pub trait Operation {
    fn mnemonic(&self) -> &str;
}
Expand description

An instruction operation.

This is description of the actual CPU operation that the instruction carries out.

Required Methods

The mnemonic for this instruction.

Implementors