dioxide 0.0.1

A barebones OS built in Rust
Documentation
1
2
3
4
5
6
7
8
9
#![no_std]
#![no_main]

// #[quark_os::entrypoint]
bootloader_api::entry_point!(main);

fn main(boot_info: &'static mut bootloader_api::BootInfo) -> ! {
  dioxide::Kernel::new(boot_info).run()
}