1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
#![no_std] #![no_main] #![feature(format_args_nl)] #[macro_export] macro_rules! nop { () => { unsafe { core::arch::asm!("nop"); } }; } pub mod kernel; mod hal; mod error; mod std; pub use dioxide_derive::entrypoint; pub use crate::kernel::Kernel;