mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-10 08:28:07 +01:00
ir: Implement GetGEFlags, SetGEFlags
This commit is contained in:
parent
e7d02a5439
commit
b6f7b8babd
6 changed files with 48 additions and 0 deletions
|
|
@ -137,6 +137,14 @@ void IREmitter::OrQFlag(const Value& value) {
|
|||
Inst(Opcode::OrQFlag, {value});
|
||||
}
|
||||
|
||||
Value IREmitter::GetGEFlags() {
|
||||
return Inst(Opcode::GetGEFlags, {});
|
||||
}
|
||||
|
||||
void IREmitter::SetGEFlags(const Value& value) {
|
||||
Inst(Opcode::SetGEFlags, {value});
|
||||
}
|
||||
|
||||
Value IREmitter::GetFpscr() {
|
||||
return Inst(Opcode::GetFpscr, {});
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue