pub trait ArchitectureEncoder<I: Instruction> { // Required method fn encode(&self, opcode: u32, operands: &[u32]) -> I; }
Architecture-specific encoding functions
Encode an instruction with specific opcode and operands