rust-operating-system/src/interrupts.rs

7 lines
128 B
Rust

use x86_64::structures::idt::InterruptDescriptorTable;
pub fn init_idt() {
let mut idt = InterruptDescriptorTable::new();
}