| 60 | } |
| 61 | |
| 62 | void exception_software_interrupt(uint32_t *regs) |
| 63 | { |
| 64 | printk(BIOS_ERR, "exception _software_interrupt\n"); |
| 65 | print_regs(regs); |
| 66 | dump_stack(regs[13], 512); |
| 67 | die("exception"); |
| 68 | } |
| 69 | |
| 70 | void exception_prefetch_abort(uint32_t *regs) |
| 71 | { |
nothing calls this directly
no test coverage detected