mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-02 08:25:07 +01:00
Merge pull request #765 from lioncash/bkpt
dyncom: Fix decoding of BKPT's immediate
This commit is contained in:
commit
9e8b703b5e
@ -1393,7 +1393,7 @@ static ARM_INST_PTR INTERPRETER_TRANSLATE(bkpt)(unsigned int inst, int index)
|
||||
inst_base->br = NON_BRANCH;
|
||||
inst_base->load_r15 = 0;
|
||||
|
||||
inst_cream->imm = BITS(inst, 8, 19) | BITS(inst, 0, 3);
|
||||
inst_cream->imm = (BITS(inst, 8, 19) << 4) | BITS(inst, 0, 3);
|
||||
|
||||
return inst_base;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user