Skip to content
Permalink
Browse files
Merge pull request #7493 from dolphin-emu/revert-7491-SPR_HID0
Revert "Jit_SystemRegisters: Correct behaviour for mtspr SPR_HID0"
  • Loading branch information
delroth committed Oct 13, 2018
2 parents 2bdee9b + 2508f6c commit ff17e2f
Showing 1 changed file with 3 additions and 3 deletions.
@@ -238,9 +238,9 @@ void Jit64::mtspr(UGeckoInstruction inst)

case SPR_HID0:
{
MOV(32, R(RSCRATCH), gpr.R(d));
BTR(32, R(RSCRATCH), Imm8(31 - 20)); // ICFI
MOV(32, PPCSTATE(spr[iIndex]), R(RSCRATCH));
gpr.BindToRegister(d, true, false);
BTR(32, gpr.R(d), Imm8(31 - 20)); // ICFI
MOV(32, PPCSTATE(spr[iIndex]), gpr.R(d));
FixupBranch dont_reset_icache = J_CC(CC_NC);
BitSet32 regs = CallerSavedRegistersInUse();
ABI_PushRegistersAndAdjustStack(regs, 0);

0 comments on commit ff17e2f

Please sign in to comment.