//! Architectural processor code. mod asm; pub use asm::*; /// Pause execution pub fn wait_forever() -> ! { loop { asm::wfe() } }