blob: 4ff3c4d762e2762fc74c441d73adc4566754501c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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,
}
|