Skip to main content

strat9_kernel/hardware/
mod.rs

1//! Hardware integration layer.
2
3pub mod nic;
4pub mod pci_client;
5pub mod storage;
6pub mod timer;
7pub mod usb;
8pub mod video;
9pub mod virtio;
10
11/// Performs the init operation.
12pub fn init() {
13    nic::init();
14    timer::init();
15    usb::init();
16    virtio::gpu::init();
17    video::framebuffer::init();
18}