redox/src/arch/x86_64/mod.rs
2016-08-13 18:58:31 -06:00

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;