mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-25 06:14:18 +08:00
12 lines
169 B
Rust
12 lines
169 B
Rust
/// Global descriptor table
|
|
pub mod gdt;
|
|
|
|
/// Interrupt descriptor table
|
|
pub mod idt;
|
|
|
|
/// IRQ Handling
|
|
pub mod irq;
|
|
|
|
/// Initialization and main function
|
|
pub mod main;
|