summaryrefslogtreecommitdiff
path: root/kernel/src/interrupts/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/src/interrupts/mod.rs')
-rw-r--r--kernel/src/interrupts/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/src/interrupts/mod.rs b/kernel/src/interrupts/mod.rs
index bc313b8..1cab595 100644
--- a/kernel/src/interrupts/mod.rs
+++ b/kernel/src/interrupts/mod.rs
@@ -1,8 +1,8 @@
pub mod apic;
-pub mod exceptions;
+pub mod exception_handlers;
pub mod gdt;
pub mod idt;
-pub mod interrupts;
+pub mod interrupt_handlers;
const INT_OFFSET: u8 = 32;