Luna/moon/src/main.rs

17 lines
217 B
Rust
Raw Normal View History

2022-10-31 13:02:12 +00:00
#![no_std]
#![no_main]
mod video;
mod bootboot;
mod panic;
mod util;
2022-10-31 13:34:32 +00:00
mod init;
use video::Color;
2022-10-31 13:02:12 +00:00
#[no_mangle]
pub extern "C" fn _start() -> ! {
2022-10-31 13:34:32 +00:00
init::check_magic();
video::clear(Color::White);
2022-10-31 13:02:12 +00:00
loop {}
2022-10-31 13:34:32 +00:00
}