mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-14 21:28:02 -05:00
armemu: Fix construction of the CPSR
This commit is contained in:
@ -227,8 +227,9 @@ ARMul_CPSRAltered (ARMul_State * state)
|
||||
//state->Cpsr &= ~CBIT;
|
||||
ASSIGNV ((state->Cpsr & VBIT) != 0);
|
||||
//state->Cpsr &= ~VBIT;
|
||||
ASSIGNS ((state->Cpsr & SBIT) != 0);
|
||||
//state->Cpsr &= ~SBIT;
|
||||
ASSIGNQ ((state->Cpsr & QBIT) != 0);
|
||||
//state->Cpsr &= ~QBIT;
|
||||
state->GEFlag = (state->Cpsr & 0x000F0000);
|
||||
#ifdef MODET
|
||||
ASSIGNT ((state->Cpsr & TBIT) != 0);
|
||||
//state->Cpsr &= ~TBIT;
|
||||
|
Reference in New Issue
Block a user