rust-kernel-rt 0.1.0

runtime crate for rust-kernel
Documentation
1
2
3
4
5
6
7
8
9
10
11
12

use core::panic::PanicInfo;

use crate::println;


// TODO : improve this
#[panic_handler]
fn panic(info: &PanicInfo) -> ! {
    println!("{}", info);
    loop {}
}