fn isOpcodeRegisterLocation(opcode: u8) bool
fn isOpcodeRegisterLocation(opcode: u8) bool { return switch (opcode) { OP.reg0...OP.reg31, OP.regx => true, else => false, }; }