From 1ac51543b77aafa0e3da8df1dc50078568107758 Mon Sep 17 00:00:00 2001 From: Alvin Cheng <88267875+cheng-alvin@users.noreply.github.com> Date: Mon, 17 Jun 2024 17:40:10 +1000 Subject: [PATCH] Added new operand identity --- libjas/instruction.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/libjas/instruction.c b/libjas/instruction.c index b9506e0a..170072db 100644 --- a/libjas/instruction.c +++ b/libjas/instruction.c @@ -40,6 +40,15 @@ instr_encode_table_t mov[] = { .should_fallback_support = false, .opcode_size = 1, }, + { + .ident = OP_RM, + .opcode_ext = NULL, + .opcode = {0x8B}, + .support = NULL, + .byte_instr_opcode = {0x8A}, + .should_fallback_support = false, + .opcode_size = 1, + }, }; instr_encode_table_t *instr_table[] = {mov}; //? Unsure of random language server error here :(