Files
CappuccinOS/src/drivers/mod.rs
juls0730 7f216fdfdd zlib driver & experimental riscv support
this commit adds the last piece to get the initramfs completely finished
2023-12-17 01:46:31 -06:00

9 lines
162 B
Rust

pub mod acpi;
pub mod fs;
pub mod keyboard;
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
pub mod pci;
pub mod serial;
pub mod storage;
pub mod video;