| 52 | // 同步异常处理程序 |
| 53 | /// 同步异常处理 - Current EL with SP0 |
| 54 | extern "C" auto sync_current_el_sp0_handler(cpu_io::TrapContext* context) |
| 55 | -> void { |
| 56 | HandleException("Sync Exception at Current EL with SP0", context, 4); |
| 57 | } |
| 58 | |
| 59 | /// IRQ 异常处理 - Current EL with SP0 |
| 60 | extern "C" auto irq_current_el_sp0_handler( |
nothing calls this directly
no test coverage detected