dioxide 0.0.1

A barebones OS built in Rust
Documentation
#![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;