mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
Jit64: fix invalid instruction encoding
This is a recent regression introduced in
c70dcf99dd
.
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…
Reference in New Issue
Block a user