JitArm64: Fix mcrxr

Likely an incorrect translation of Jit64's LEA with SCALE_2.
This commit is contained in:
JosJuice 2023-08-19 20:57:32 +02:00
parent ed7894924c
commit 5ea1cc5406
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ void JitArm64::mcrxr(UGeckoInstruction inst)
LDRB(IndexType::Unsigned, WB, PPC_REG, PPCSTATE_OFF(xer_so_ov));
// [0 SO OV CA]
ADD(WA, WA, WB, ArithOption(WB, ShiftType::LSL, 2));
ADD(WA, WA, WB, ArithOption(WB, ShiftType::LSL, 1));
// [SO OV CA 0] << 3
LSL(WA, WA, 4);