summaryrefslogtreecommitdiff
path: root/crates/kernel/src/arch/riscv64/mod.rs
blob: 011e244932294a03772699db505ce67a16773ec3 (plain)
1
2
3
4
5
6
7
8
9
pub mod interrupts;
pub mod paging;

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