mtkernel_3/include/sys/sysdepend/iote_rx231/machine.h | bare source | permlink (0.00 seconds) |
1: /* 2: *---------------------------------------------------------------------- 3: * micro T-Kernel 3.00.01 4: * 5: * Copyright (C) 2006-2020 by Ken Sakamura. 6: * This software is distributed under the T-License 2.2. 7: *---------------------------------------------------------------------- 8: * 9: * Released by TRON Forum(http://www.tron.org) at 2020/05/29. 10: * 11: *---------------------------------------------------------------------- 12: */ 13: 14: 15: /* 16: * machine.h 17: * 18: * Machine type definition (RX231 IoT-Engine depended) 19: */ 20: 21: #ifndef __SYS_SYSDEPEND_MACHINE_H__ 22: #define __SYS_SYSDEPEND_MACHINE_H__ 23: 24: /* 25: * [TYPE]_[CPU] TARGET SYSTEM 26: * CPU_xxxx CPU type 27: * CPU_CORE_xxx CPU core type 28: */ 29: 30: /* ----- RX231 IoT-Engine (CPU: RX231) definition ----- */ 31: 32: #define IOTE_RX231 1 /* Target system : RX231 IoT-Engine */ 33: #define CPU_RX231 1 /* Target CPU : Renesas RX231 */ 34: #define CPU_CORE_RXV2 1 /* Target CPU-Core : RX200 series*/ 35: 36: #define TARGET_DIR iote_rx231 /* Sysdepend-Directory name */ 37: 38: /* 39: **** CPU-depeneded profile (RX231) 40: */ 41: #include "../cpu/rx231/machine.h" 42: 43: 44: #endif /* __SYS_SYSDEPEND_MACHINE_H__ */