1
0
Fork 0
forked from AbleOS/ableos
ableOS_v1Change/ableos/src/panic.rs

9 lines
169 B
Rust
Raw Normal View History

2022-01-18 06:15:51 -06:00
use {crate::arch::sloop, core::panic::PanicInfo};
2021-11-16 00:09:27 -06:00
#[panic_handler]
fn panic(info: &PanicInfo) -> ! {
2022-01-07 10:31:47 -06:00
// println!("{}", info);
2021-12-24 07:03:15 -06:00
error!("{}", info);
sloop()
2021-11-16 00:09:27 -06:00
}