redox/src/arch/x86_64/mod.rs

24 lines
329 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;
/// IO Handling
pub mod io;
2016-08-14 02:21:46 +02:00
/// IRQ Handling
pub mod irq;
/// Initialization and main function
pub mod main;
/// Memcpy, memmove, etc.
pub mod mem;
/// Serial driver and print! support
pub mod serial;
/// Task state segment
pub mod tss;