bootproof/src/misc.rs

6 lines
119 B
Rust

pub fn halt() -> ! {
use x86_64::instructions::{interrupts, hlt};
interrupts::disable();
loop { hlt(); }
}