Rev 1860 | Rev 1870 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1860 | Rev 1861 | ||
|---|---|---|---|
| Line 40... | Line 40... | ||
| 40 | #define TT_ILLEGAL_INSTRUCTION 0x10 |
40 | #define TT_ILLEGAL_INSTRUCTION 0x10 |
| 41 | #define TT_DATA_ACCESS_ERROR 0x32 |
41 | #define TT_DATA_ACCESS_ERROR 0x32 |
| 42 | #define TT_MEM_ADDRESS_NOT_ALIGNED 0x34 |
42 | #define TT_MEM_ADDRESS_NOT_ALIGNED 0x34 |
| 43 | 43 | ||
| 44 | #ifndef __ASM__ |
44 | #ifndef __ASM__ |
| - | 45 | ||
| - | 46 | #include <typedefs.h> |
|
| - | 47 | ||
| 45 | extern void do_instruction_access_exc(void); |
48 | extern void do_instruction_access_exc(int n, istate_t *istate); |
| 46 | extern void do_mem_address_not_aligned(void); |
49 | extern void do_mem_address_not_aligned(int n, istate_t *istate); |
| 47 | extern void do_data_access_error(void); |
50 | extern void do_data_access_error(int n, istate_t *istate); |
| 48 | extern void do_illegal_instruction(void); |
51 | extern void do_illegal_instruction(int n, istate_t *istate); |
| - | 52 | ||
| 49 | #endif /* !__ASM__ */ |
53 | #endif /* !__ASM__ */ |
| 50 | 54 | ||
| 51 | #endif |
55 | #endif |
| 52 | 56 | ||
| 53 | /** @} |
57 | /** @} |
| 54 | */ |
58 | */ |
| 55 | - | ||