summaryrefslogtreecommitdiff
path: root/kernel/src/arch/riscv64/mod.rs
blob: 32731e82ea73b9793ee64640fb2cfa54f660e2b0 (plain)
1
2
3
4
5
6
7
8
pub mod interrupts;

/// Halts the hart.
pub fn sleep_forever() -> ! {
    loop {
        unsafe { core::arch::asm!("wfi") }
    }
}