summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/frontend/ir/opcodes.inc
diff options
context:
space:
mode:
authorGravatar ameerj2021-03-01 15:58:16 -0500
committerGravatar ameerj2021-07-22 21:51:23 -0400
commit103b9da4f7115ff47eee52d0dbd31b5b7a18b257 (patch)
tree52e00b1766326559fad61cefa460b6666d2792c9 /src/shader_recompiler/frontend/ir/opcodes.inc
parentshader: Implement ISET, add common_funcs (diff)
downloadyuzu-103b9da4f7115ff47eee52d0dbd31b5b7a18b257.tar.gz
yuzu-103b9da4f7115ff47eee52d0dbd31b5b7a18b257.tar.xz
yuzu-103b9da4f7115ff47eee52d0dbd31b5b7a18b257.zip
shader: Implement FLO
Diffstat (limited to 'src/shader_recompiler/frontend/ir/opcodes.inc')
-rw-r--r--src/shader_recompiler/frontend/ir/opcodes.inc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/shader_recompiler/frontend/ir/opcodes.inc b/src/shader_recompiler/frontend/ir/opcodes.inc
index 2c4a997dc..aedbc5c3e 100644
--- a/src/shader_recompiler/frontend/ir/opcodes.inc
+++ b/src/shader_recompiler/frontend/ir/opcodes.inc
@@ -235,6 +235,8 @@ OPCODE(BitReverse32, U32, U32,
235OPCODE(BitCount32, U32, U32, ) 235OPCODE(BitCount32, U32, U32, )
236OPCODE(BitwiseNot32, U32, U32, ) 236OPCODE(BitwiseNot32, U32, U32, )
237 237
238OPCODE(FindSMsb32, U32, U32, )
239OPCODE(FindUMsb32, U32, U32, )
238OPCODE(SMin32, U32, U32, U32, ) 240OPCODE(SMin32, U32, U32, U32, )
239OPCODE(UMin32, U32, U32, U32, ) 241OPCODE(UMin32, U32, U32, U32, )
240OPCODE(SMax32, U32, U32, U32, ) 242OPCODE(SMax32, U32, U32, U32, )