redox/kernel/arch/x86_64/mod.rs

26 lines
375 B
Rust
Raw Normal View History

//! X86_64 architecture primitives.
/// Global descriptor table.
2016-08-14 02:58:31 +02:00
pub mod gdt;
/// Interrupt descriptor table.
2016-08-14 02:58:31 +02:00
pub mod idt;
/// IO handling.
pub mod io;
/// IRQ handling.
2016-08-14 02:21:46 +02:00
pub mod irq;
/// Initialization and main function.
2016-08-14 02:21:46 +02:00
pub mod main;
/// Core memory routines.
pub mod mem;
/// Serial driver and `print!` support.
pub mod serial;
/// Task state segment.
pub mod tss;