pub trait Emulate {
    fn emulate(&self) -> Option<Instruction>;
}
Expand description

All instructions that can emulate an instruction implement Emulate so that the decoding step can determine if a decoded instruction emulates another

Required Methods§

Implementors§