summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMathew Maidment <mathew1800@gmail.com>2016-04-09 21:32:42 +0200
committerMathew Maidment <mathew1800@gmail.com>2016-04-09 21:32:42 +0200
commit0b7efc2be203dc0039f67197654b522e2270a61a (patch)
treedf930e7a81b20a4d305e625719991a625a072772
parentMerge pull request #1624 from JayFoxRox/buffer-allow-write (diff)
parentFix BLX LR opcode interpretation (diff)
downloadyuzu-0b7efc2be203dc0039f67197654b522e2270a61a.tar
yuzu-0b7efc2be203dc0039f67197654b522e2270a61a.tar.gz
yuzu-0b7efc2be203dc0039f67197654b522e2270a61a.tar.bz2
yuzu-0b7efc2be203dc0039f67197654b522e2270a61a.tar.lz
yuzu-0b7efc2be203dc0039f67197654b522e2270a61a.tar.xz
yuzu-0b7efc2be203dc0039f67197654b522e2270a61a.tar.zst
yuzu-0b7efc2be203dc0039f67197654b522e2270a61a.zip
Diffstat (limited to '')
-rw-r--r--src/core/arm/dyncom/arm_dyncom_interpreter.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/arm/dyncom/arm_dyncom_interpreter.cpp b/src/core/arm/dyncom/arm_dyncom_interpreter.cpp
index a6faf42b9..647784208 100644
--- a/src/core/arm/dyncom/arm_dyncom_interpreter.cpp
+++ b/src/core/arm/dyncom/arm_dyncom_interpreter.cpp
@@ -4080,11 +4080,12 @@ unsigned InterpreterMainLoop(ARMul_State* cpu) {
if ((inst_base->cond == ConditionCode::AL) || CondPassed(cpu, inst_base->cond)) {
unsigned int inst = inst_cream->inst;
if (BITS(inst, 20, 27) == 0x12 && BITS(inst, 4, 7) == 0x3) {
+ const u32 jump_address = cpu->Reg[inst_cream->val.Rm];
cpu->Reg[14] = (cpu->Reg[15] + cpu->GetInstructionSize());
if(cpu->TFlag)
cpu->Reg[14] |= 0x1;
- cpu->Reg[15] = cpu->Reg[inst_cream->val.Rm] & 0xfffffffe;
- cpu->TFlag = cpu->Reg[inst_cream->val.Rm] & 0x1;
+ cpu->Reg[15] = jump_address & 0xfffffffe;
+ cpu->TFlag = jump_address & 0x1;
} else {
cpu->Reg[14] = (cpu->Reg[15] + cpu->GetInstructionSize());
cpu->TFlag = 0x1;