redox/arch/test/src/main.rs
2016-08-14 14:59:18 -06:00

12 lines
219 B
Rust

/// 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();
}