Browse Source

armemu: Fix SEL

Needs to use the updated state of the CPSR.
pull/15/merge
Lioncash 11 years ago
parent
commit
f66d356938
  1. 2
      src/core/arm/interpreter/armemu.cpp

2
src/core/arm/interpreter/armemu.cpp

@ -6153,7 +6153,7 @@ L_stm_s_takeabort:
u32 rm = (instr >> 0) & 0xF;
u32 from = state->Reg[rn];
u32 to = state->Reg[rm];
u32 cpsr = state->Cpsr;
u32 cpsr = ARMul_GetCPSR(state);
if ((instr & 0xFF0) == 0xFB0) { // SEL
u32 result;
if (cpsr & (1 << 16))

Loading…
Cancel
Save