mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 14:27:49 +00:00
6 lines
129 B
Rust
6 lines
129 B
Rust
use x86_64::structures::idt::InterruptDescriptorTable;
|
|
|
|
pub fn init_idt() {
|
|
let mut idt = InterruptDescriptorTable::new();
|
|
}
|