#![cfg(target_arch ="x86_64")]//! Special x86_64 instructions.
pubmodinterrupts;pubmodport;pubmodsegmentation;pubmodtables;pubmodtlb;/// Cause a breakpoint exception by invoking the `int3` instruction.
pubfnint3(){unsafe{asm!("int3"::::"volatile");}}/// Halts the CPU until the next interrupt arrives.
#[inline(always)]pubfnhlt(){unsafe{asm!("hlt"::::"volatile");}}