//! Miscellaneous assembly instructions
use crateasm;
/// A no-operation. Useful to prevent delay loops from being optimized away.
///
/// Unlike [barrier], this does not prevent reordering of memory access.
/// A compiler fence, prevents instruction reordering.
///
/// Unlike [nop], this does not emit machine code.