summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/frontend/ir/opcodes.inc
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2021-07-25 21:27:21 -0300
committerGravatar Fernando Sahmkow2021-11-16 22:11:28 +0100
commit95761cc6a70987b2625d68c4d9da4e2622f57808 (patch)
tree6bb64646fe8a4bc2741d260526be61b8f954dce2 /src/shader_recompiler/frontend/ir/opcodes.inc
parentcommon/settings: Remove unused scaling options (diff)
downloadyuzu-95761cc6a70987b2625d68c4d9da4e2622f57808.tar.gz
yuzu-95761cc6a70987b2625d68c4d9da4e2622f57808.tar.xz
yuzu-95761cc6a70987b2625d68c4d9da4e2622f57808.zip
shader: Add integer division opcodes
Diffstat (limited to '')
-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 72751c5a0..c05e6d312 100644
--- a/src/shader_recompiler/frontend/ir/opcodes.inc
+++ b/src/shader_recompiler/frontend/ir/opcodes.inc
@@ -287,6 +287,8 @@ OPCODE(IAdd64, U64, U64,
287OPCODE(ISub32, U32, U32, U32, ) 287OPCODE(ISub32, U32, U32, U32, )
288OPCODE(ISub64, U64, U64, U64, ) 288OPCODE(ISub64, U64, U64, U64, )
289OPCODE(IMul32, U32, U32, U32, ) 289OPCODE(IMul32, U32, U32, U32, )
290OPCODE(SDiv32, U32, U32, U32, )
291OPCODE(UDiv32, U32, U32, U32, )
290OPCODE(INeg32, U32, U32, ) 292OPCODE(INeg32, U32, U32, )
291OPCODE(INeg64, U64, U64, ) 293OPCODE(INeg64, U64, U64, )
292OPCODE(IAbs32, U32, U32, ) 294OPCODE(IAbs32, U32, U32, )