mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-23 06:10:03 -06:00
JIT: most mem instructions working
+ branching
This commit is contained in:
@ -317,7 +317,7 @@ Info Decode(bool thumb, u32 num, u32 instr)
|
||||
else
|
||||
{
|
||||
u32 data = ARMInstrTable[((instr >> 4) & 0xF) | ((instr >> 16) & 0xFF0)];
|
||||
if ((instr & 0xFE000000) == 0xFA000000)
|
||||
if (num == 0 && (instr & 0xFE000000) == 0xFA000000)
|
||||
data = A_BLX_IMM;
|
||||
|
||||
if (data & A_ARM9Only && num != 0)
|
||||
|
Reference in New Issue
Block a user