mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-10 06:29:00 +01:00
Jit64: fix invalid instruction encoding
This is a recent regression introduced in c70dcf99dd7b434d5196feb47f2a6e87bb34234b.
This commit is contained in:
parent
b7435be90a
commit
f6131e9703
@ -585,7 +585,7 @@ void Jit64::mcrxr(UGeckoInstruction inst)
|
||||
|
||||
// Clear XER[0-3]
|
||||
static_assert(PPCSTATE_OFF(xer_ca) + 1 == PPCSTATE_OFF(xer_so_ov));
|
||||
MOV(16, PPCSTATE(xer_ca), Imm8(0));
|
||||
MOV(16, PPCSTATE(xer_ca), Imm16(0));
|
||||
}
|
||||
|
||||
void Jit64::crXXX(UGeckoInstruction inst)
|
||||
|
Loading…
x
Reference in New Issue
Block a user