Skip to main content

JcEmitter

Trait JcEmitter 

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

JC.

Supported operand variants:

+---+----------+
| # | Operands |
+---+----------+
| 1 | Imm      |
| 2 | Label    |
| 3 | Sym      |
+---+----------+

Required Methods§

Source

fn jc(&mut self, op0: A)

Implementors§

Source§

impl<'a> JcEmitter<Imm> for Assembler<'a>

Source§

impl<'a> JcEmitter<Label> for Assembler<'a>

Source§

impl<'a> JcEmitter<Sym> for Assembler<'a>