redox/arch/test/src/main.rs

12 lines
219 B
Rust
Raw Normal View History

2016-08-14 22:59:18 +02:00
/// This function is where the kernel sets up IRQ handlers
/// It is increcibly unsafe, and should be minimal in nature
extern {
fn kmain() -> !;
}
#[no_mangle]
pub unsafe extern fn kstart() -> ! {
kmain();
}