mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-02-19 22:59:36 +00:00
a64_jitstate: A64 does not have a seperate FPSCR.NZCV
This commit is contained in:
@@ -30,8 +30,10 @@ struct A64JitState {
|
||||
u64 sp;
|
||||
u64 pc;
|
||||
|
||||
u32 CPSR_nzcv = 0;
|
||||
u32 FPSCR_nzcv = 0;
|
||||
union {
|
||||
u32 CPSR_nzcv = 0;
|
||||
u32 FPSCR_nzcv;
|
||||
};
|
||||
u32 GetPstate() const {
|
||||
return CPSR_nzcv;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user