Skip to content

Commit

Permalink
V850_LDBU
Browse files Browse the repository at this point in the history
  • Loading branch information
imbillow committed Jan 25, 2024
1 parent 0000064 commit e9f8aee
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions librz/asm/arch/v850/v850_disas.c
Original file line number Diff line number Diff line change
Expand Up @@ -402,6 +402,12 @@ static bool decode_formatVII(V850_Inst *inst) {
}
inst->disp &= ~1;
break;
case 0x3d: /// GUESS!
if (inst->sub_opcode && inst->reg2) {
inst->id = V850_LDBU;
break;
}
return false;
case 0x3e: {
if (inst->sub_opcode) {
inst->id = V850_LDBU;
Expand Down

0 comments on commit e9f8aee

Please sign in to comment.