zingen/masm/
stack.rs

1//! Stack Instructions
2
3use crate::{MacroAssembler, Result};
4
5impl MacroAssembler {
6    /// The drop instruction simply throw away a single operand.
7    pub fn _drop(&mut self) -> Result<()> {
8        self._pop()
9    }
10}