aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Shader/Decoders
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2020-03-23 13:32:30 -0300
committerGitHub <noreply@github.com>2020-03-23 17:32:30 +0100
commit6edc9298944d16c29e7423da5b1f3ce3e1025ac7 (patch)
tree4b71cc317f26d2c81d6e41df698f2d31e2bc4298 /Ryujinx.Graphics.Shader/Decoders
parent9a208c4fb5a374eaf691b9ef83f918b209c82438 (diff)
Implement ICMP shader instruction (#1010)
Diffstat (limited to 'Ryujinx.Graphics.Shader/Decoders')
-rw-r--r--Ryujinx.Graphics.Shader/Decoders/OpCodeTable.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Shader/Decoders/OpCodeTable.cs b/Ryujinx.Graphics.Shader/Decoders/OpCodeTable.cs
index 72f66f4a..3878dd87 100644
--- a/Ryujinx.Graphics.Shader/Decoders/OpCodeTable.cs
+++ b/Ryujinx.Graphics.Shader/Decoders/OpCodeTable.cs
@@ -120,6 +120,10 @@ namespace Ryujinx.Graphics.Shader.Decoders
Set("010011001100xx", InstEmit.Iadd3, typeof(OpCodeAluCbuf));
Set("0011100x1100xx", InstEmit.Iadd3, typeof(OpCodeAluImm));
Set("010111001100xx", InstEmit.Iadd3, typeof(OpCodeAluReg));
+ Set("010010110100xx", InstEmit.Icmp, typeof(OpCodeAluCbuf));
+ Set("0011011x0100xx", InstEmit.Icmp, typeof(OpCodeAluImm));
+ Set("010110110100xx", InstEmit.Icmp, typeof(OpCodeAluReg));
+ Set("010100110100xx", InstEmit.Icmp, typeof(OpCodeAluRegCbuf));
Set("010010100xxxxx", InstEmit.Imad, typeof(OpCodeAluCbuf));
Set("0011010x0xxxxx", InstEmit.Imad, typeof(OpCodeAluImm));
Set("010110100xxxxx", InstEmit.Imad, typeof(OpCodeAluReg));