Files
tetros/tetros/src/idt/mod.rs
Mark 8f2edd69f7
All checks were successful
CI / Typos (push) Successful in 11s
CI / Clippy (push) Successful in 30s
CI / Build (push) Successful in 1m8s
Reorganize
2025-03-02 10:44:55 -08:00

21 lines
338 B
Rust

//! IDT structures and routines for 32-bit x86.
//!
//! Based on code from the `x86_64` crate.
//! Many comments are copied verbatim.
//! (most notably, in `table.rs`)
mod virtaddr;
pub use virtaddr::*;
mod entry;
pub use entry::*;
mod table;
pub use table::*;
mod handler;
pub use handler::*;
mod stackframe;
pub use stackframe::*;