From e9f8aee8c2a3b33a439a605f099ff22a9e828b5f Mon Sep 17 00:00:00 2001 From: billow Date: Thu, 25 Jan 2024 10:29:28 +0800 Subject: [PATCH] V850_LDBU --- librz/asm/arch/v850/v850_disas.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/librz/asm/arch/v850/v850_disas.c b/librz/asm/arch/v850/v850_disas.c index 0b5624b7db8..afa4db8c09c 100644 --- a/librz/asm/arch/v850/v850_disas.c +++ b/librz/asm/arch/v850/v850_disas.c @@ -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;