1
0
Fork 0
forked from AbleOS/ableos
ableos-idl/ableos/src/panic.rs
2022-01-18 06:15:51 -06:00

9 lines
169 B
Rust

use {crate::arch::sloop, core::panic::PanicInfo};
#[panic_handler]
fn panic(info: &PanicInfo) -> ! {
// println!("{}", info);
error!("{}", info);
sloop()
}