summaryrefslogtreecommitdiff
path: root/kernel/src/interrupts/mod.rs
blob: 9753b6bb3929597a3da9e8e14aeba87b11f2ff63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod apic;
pub mod exceptions;
pub mod gdt;
pub mod idt;

#[repr(usize)]
#[derive(PartialEq, Clone, Copy)]
pub enum Interrupts {
    NONE,
    PAGE_FAULT,
    DOUBLE_FAULT,
    NOT_PRESENT,
    BREAKPOINT,
}