//! Wrapping ARMv7-A Instructions /// WFE /// #[inline(always)] pub fn wfe() { unsafe { core::arch::asm!("wfe", options(nomem, nostack)) } }