Luna/moon/src/main.rs
2022-10-31 14:02:12 +01:00

14 lines
162 B
Rust

#![no_std]
#![no_main]
mod video;
mod bootboot;
mod panic;
mod util;
#[no_mangle]
pub extern "C" fn _start() -> ! {
video::clear(0xffffffff);
loop {}
}