Go to the source code of this file.
| #define CPU_CRITICAL_METHOD_INT_DIS_EN 1u /* DIS/EN ints (see Note #1a). */ |
| #define CPU_CRITICAL_METHOD_NONE 0u /* */ |
| #define CPU_CRITICAL_METHOD_STATUS_LOCAL 3u /* Save/Restore int status to local var (see Note #1c). */ |
| #define CPU_CRITICAL_METHOD_STATUS_STK 2u /* Push/Pop int status onto stk (see Note #1b). */ |
| #define CPU_ENDIAN_TYPE_BIG 1u /* Big- endian word order (see Note #1a). */ |
| #define CPU_ENDIAN_TYPE_LITTLE 2u /* Little-endian word order (see Note #1b). */ |
| #define CPU_ENDIAN_TYPE_NONE 0u |
| #define CPU_STK_GROWTH_HI_TO_LO 2u /* CPU stk decs towards lower mem addrs (see Note #1b). */ |
| #define CPU_STK_GROWTH_LO_TO_HI 1u /* CPU stk incs towards higher mem addrs (see Note #1a). */ |
| #define CPU_STK_GROWTH_NONE 0u |
| #define CPU_WORD_SIZE_08 1u /* 8-bit word size (in octets). */ |
| #define CPU_WORD_SIZE_16 2u /* 16-bit word size (in octets). */ |
| #define CPU_WORD_SIZE_32 4u /* 32-bit word size (in octets). */ |
| #define CPU_WORD_SIZE_64 8u /* 64-bit word size (in octets). */ |