Rev 883 | Rev 1702 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 883 | Rev 897 | ||
|---|---|---|---|
| Line 40... | Line 40... | ||
| 40 | void do_mem_address_not_aligned(void) |
40 | void do_mem_address_not_aligned(void) |
| 41 | { |
41 | { |
| 42 | panic("Memory Address Not Aligned\n"); |
42 | panic("Memory Address Not Aligned\n"); |
| 43 | } |
43 | } |
| 44 | 44 | ||
| - | 45 | /** Handle data_access_error. */ |
|
| - | 46 | void do_data_access_error(void) |
|
| - | 47 | { |
|
| - | 48 | panic("Data Access Error: %P\n", tpc_read()); |
|
| - | 49 | } |
|
| - | 50 | ||
| 45 | /** Handle mem_address_not_aligned. */ |
51 | /** Handle mem_address_not_aligned. */ |
| 46 | void do_illegal_instruction(void) |
52 | void do_illegal_instruction(void) |
| 47 | { |
53 | { |
| 48 | panic("Illegal Instruction: %P\n", tpc_read()); |
54 | panic("Illegal Instruction: %P\n", tpc_read()); |
| 49 | } |
55 | } |