cpu_conf.h
来自「嵌入式操作系统T-Kernel 完整代码」· C头文件 代码 · 共 61 行
H
61 行
/* *---------------------------------------------------------------------- * T-Kernel * * Copyright (C) 2004 by Ken Sakamura. All rights reserved. * T-Kernel is distributed under the T-License. *---------------------------------------------------------------------- * * Version: 1.01.00 * Released by T-Engine Forum(http://www.t-engine.org) at 2004/6/28. * *---------------------------------------------------------------------- *//* * cpu_conf.h (SH7727) * CPU-Dependant OS Configuration Information */#ifndef _CPU_CONF_#define _CPU_CONF_/* * Use 'dispatch_disabled' */#define USE_DISPATCH_DISABLED/* * Do not use MMU */#define USE_MMU 0/* * Definition of minimum system stack size * Minimum system stack size when setting the system stack size * per task by 'tk_cre_tsk().' */#define MIN_SYS_STACK_SIZE 1024/* * Maximum logical space ID */#define MAX_LSID 255/* ------------------------------------------------------------------------ *//* * SH specific setting *//* * Define when using MDR DCT */#define USE_MDR_DCT 1/* * Define when using SH3 DSP */#define USE_SH3_DSP 1#endif /* _CPU_CONF_ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?