Files
blog_os/src/interrupts.rs
2019-01-25 13:47:28 +01:00

6 lines
129 B
Rust

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