1
0
Fork 0
forked from AbleOS/ableos
ableOS_v1Change/ableos/src/arch/x86_64/mod.rs

34 lines
561 B
Rust
Raw Normal View History

2021-11-16 00:09:27 -06:00
use x86_64::instructions::hlt;
use bootloader::BootInfo;
2021-11-16 00:09:27 -06:00
pub mod drivers;
pub mod gdt;
pub mod init;
pub mod interrupts;
pub mod memory;
// #[no_mangle]
// pub extern "C" fn _start(boot_info: &'static BootInfo) -> ! {
// crate::kmain::kernel_main(boot_info);
// // sloop();
// }
2021-11-16 00:09:27 -06:00
#[allow(unused)]
pub fn shutdown() -> ! {
unsafe {
cpuio::outw(0x2000, 0x604);
}
2021-11-16 00:09:27 -06:00
sloop();
}
pub fn sloop() -> ! {
loop {
hlt();
}
}
#[cfg(test)]
pub fn test_runner(tests: &[&dyn Fn()]) {
for test in tests {
test();
}
2021-11-16 00:09:27 -06:00
}