Skip to content

Commit

Permalink
Added new operand identity
Browse files Browse the repository at this point in the history
  • Loading branch information
cheng-alvin committed Jun 17, 2024
1 parent 34456a7 commit 1ac5154
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions libjas/instruction.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 :(
Expand Down

0 comments on commit 1ac5154

Please sign in to comment.