tkernel_2/kernel/sysdepend/cpu/em1d/cpu_conf.h | bare source | permlink (0.00 seconds) |
1: /* 2: *---------------------------------------------------------------------- 3: * T-Kernel 2.0 Software Package 4: * 5: * Copyright 2011 by Ken Sakamura. 6: * This software is distributed under the latest version of T-License 2.x. 7: *---------------------------------------------------------------------- 8: * 9: * Released by T-Engine Forum(http://www.t-engine.org/) at 2011/05/17. 10: * Modified by TRON Forum(http://www.tron.org/) at 2015/06/01. 11: * 12: *---------------------------------------------------------------------- 13: */ 14: 15: /* 16: * cpu_conf.h (EM1-D512) 17: * CPU-Dependent OS Configuration Information 18: */ 19: 20: #ifndef _CPU_CONF_ 21: #define _CPU_CONF_ 22: 23: /* 24: * Define 1 when using MMU 25: * 0: not using MMU 26: * 1: using MMU 27: */ 28: #define USE_MMU 0 29: 30: /* 31: * Definition of minimum system stack size 32: * Minimum system stack size when setting the system stack size 33: * per task by 'tk_cre_tsk().' 34: */ 35: #define MIN_SYS_STACK_SIZE 1024 36: 37: /* 38: * Maximum logical space ID 39: */ 40: #define MAX_LSID 255 41: 42: #endif /* _CPU_CONF_ */