zodiac 0.2.0

Rust OS framework that offers safe interfaces for kernel development
Documentation
1
2
3
4
5
6
7
8
use irq::IrqManager;
use spin::Lazy;

pub use crate::trap::irq::{Irq, IrqHandler};

mod irq;

pub(crate) static IRQ_MANAGER: Lazy<IrqManager> = Lazy::new(IrqManager::new);