mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-08 23:48:18 +01:00
ir: Implement GetGEFlags, SetGEFlags
This commit is contained in:
parent
e7d02a5439
commit
b6f7b8babd
6 changed files with 48 additions and 0 deletions
|
|
@ -99,6 +99,7 @@ bool Inst::ReadsFromCPSR() const {
|
|||
case Opcode::GetZFlag:
|
||||
case Opcode::GetCFlag:
|
||||
case Opcode::GetVFlag:
|
||||
case Opcode::GetGEFlags:
|
||||
return true;
|
||||
|
||||
default:
|
||||
|
|
@ -114,6 +115,7 @@ bool Inst::WritesToCPSR() const {
|
|||
case Opcode::SetCFlag:
|
||||
case Opcode::SetVFlag:
|
||||
case Opcode::OrQFlag:
|
||||
case Opcode::SetGEFlags:
|
||||
return true;
|
||||
|
||||
default:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue