nop is 
```rust
/// Emit an NOP instruction
#[inline]
pub fn nop() {
    unsafe {
        core::arch::asm!("nop");
    }
}
```