6 lines
76 B
Rust
6 lines
76 B
Rust
pub enum Interrupt {
|
|
PageFault,
|
|
ProtectionFault,
|
|
Generic(u8),
|
|
}
|