Files
rustkernel/drivers/src/lib.rs
2025-06-20 01:50:08 +02:00

16 líneas
290 B
Rust

// SPDX-License-Identifier: GPL-2.0
//! Kernel drivers library
//!
//! This crate contains various kernel drivers for the Rust kernel.
#![no_std]
extern crate alloc;
pub mod keyboard; // Keyboard driver
pub mod mem;
pub mod ramdisk;
pub mod serial; // Serial driver
pub use ramdisk::*;