| 194 | } |
| 195 | |
| 196 | void UnknownException(struct pt_regs *regs) |
| 197 | { |
| 198 | |
| 199 | rt_kprintf("Bad trap at PC: %lx, SR: %lx, vector=%lx\n", |
| 200 | regs->nip, regs->msr, regs->trap); |
| 201 | _exception(0, regs); |
| 202 | } |
| 203 | |
| 204 | void DebugException(struct pt_regs *regs) |
| 205 | { |
nothing calls this directly
no test coverage detected