#[naked] pub unsafe extern "C" fn trap_handler() -> ! { use core::arch::asm; asm!( "mret", options(noreturn) ); }