diff options
Diffstat (limited to 'src/shader_recompiler/frontend/ir/opcodes.inc')
| -rw-r--r-- | src/shader_recompiler/frontend/ir/opcodes.inc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/shader_recompiler/frontend/ir/opcodes.inc b/src/shader_recompiler/frontend/ir/opcodes.inc index ffd0cc690..702372775 100644 --- a/src/shader_recompiler/frontend/ir/opcodes.inc +++ b/src/shader_recompiler/frontend/ir/opcodes.inc | |||
| @@ -46,10 +46,18 @@ OPCODE(GetZFlag, U1, Void | |||
| 46 | OPCODE(GetSFlag, U1, Void, ) | 46 | OPCODE(GetSFlag, U1, Void, ) |
| 47 | OPCODE(GetCFlag, U1, Void, ) | 47 | OPCODE(GetCFlag, U1, Void, ) |
| 48 | OPCODE(GetOFlag, U1, Void, ) | 48 | OPCODE(GetOFlag, U1, Void, ) |
| 49 | OPCODE(GetFCSMFlag, U1, Void, ) | ||
| 50 | OPCODE(GetTAFlag, U1, Void, ) | ||
| 51 | OPCODE(GetTRFlag, U1, Void, ) | ||
| 52 | OPCODE(GetMXFlag, U1, Void, ) | ||
| 49 | OPCODE(SetZFlag, Void, U1, ) | 53 | OPCODE(SetZFlag, Void, U1, ) |
| 50 | OPCODE(SetSFlag, Void, U1, ) | 54 | OPCODE(SetSFlag, Void, U1, ) |
| 51 | OPCODE(SetCFlag, Void, U1, ) | 55 | OPCODE(SetCFlag, Void, U1, ) |
| 52 | OPCODE(SetOFlag, Void, U1, ) | 56 | OPCODE(SetOFlag, Void, U1, ) |
| 57 | OPCODE(SetFCSMFlag, Void, U1, ) | ||
| 58 | OPCODE(SetTAFlag, Void, U1, ) | ||
| 59 | OPCODE(SetTRFlag, Void, U1, ) | ||
| 60 | OPCODE(SetMXFlag, Void, U1, ) | ||
| 53 | OPCODE(WorkgroupId, U32x3, ) | 61 | OPCODE(WorkgroupId, U32x3, ) |
| 54 | OPCODE(LocalInvocationId, U32x3, ) | 62 | OPCODE(LocalInvocationId, U32x3, ) |
| 55 | 63 | ||