Skip to main content

PopEmitter

Trait PopEmitter 

Source
pub trait PopEmitter<A> {
    // Required method
    fn pop(&mut self, op0: A);
}
Expand description

POP.

Supported operand variants:

+---+----------+
| # | Operands |
+---+----------+
| 1 | Gpq      |
| 2 | Gpw      |
| 3 | Mem      |
+---+----------+

Required Methods§

Source

fn pop(&mut self, op0: A)

Implementors§

Source§

impl<'a> PopEmitter<Gpq> for Assembler<'a>

Source§

impl<'a> PopEmitter<Gpw> for Assembler<'a>

Source§

impl<'a> PopEmitter<Mem> for Assembler<'a>