On the branch next there is an issue with the disassembly of some instructions. The mnemonic is empty and is contained in op_str.
E.g for 30 02 a0 e1 the instruction should be lsr r0, r0, r2, lsr as mnemonic and r0, r0, r2 as op_str, but it's not the case, the mnemonic is empty and lsr is in op_str.
Hi,
On the branch
next
there is an issue with the disassembly of some instructions. Themnemonic
is empty and is contained inop_str
.E.g for
30 02 a0 e1
the instruction should belsr r0, r0, r2
,lsr
asmnemonic
andr0, r0, r2
asop_str
, but it's not the case, the mnemonic is empty andlsr
is inop_str
.Here is a small code to reproduce the issue:
The output will be:
The same issue is happening in
cstool
.I didn't test the version v5 if the issue is the same.