1 2 3 4 5 6 7 8 9
#[repr(u8)] pub enum Instruction { MOV = 0x01, ADD = 0x02, SUB = 0x03, JMP = 0x04, JZ = 0x05, HLT = 0xFF, }