redox/src/arch/x86_64/mod.rs

12 lines
169 B
Rust
Raw Normal View History

2016-08-14 02:58:31 +02:00
/// Global descriptor table
pub mod gdt;
/// Interrupt descriptor table
pub mod idt;
2016-08-14 02:21:46 +02:00
/// IRQ Handling
pub mod irq;
/// Initialization and main function
pub mod main;