summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-09-20 17:41:05 +0200
committerFernandoS27 <fsahmkow27@gmail.com>2019-09-21 20:28:03 +0200
commit527b841c1567fd7552153eea0fdcee119e44c53f (patch)
treeaa5d794c410047132b1be95bdab66b966fb0b8f6 /src/video_core/engines
parentShader_IR: Implement ICMP. (diff)
downloadyuzu-527b841c1567fd7552153eea0fdcee119e44c53f.tar
yuzu-527b841c1567fd7552153eea0fdcee119e44c53f.tar.gz
yuzu-527b841c1567fd7552153eea0fdcee119e44c53f.tar.bz2
yuzu-527b841c1567fd7552153eea0fdcee119e44c53f.tar.lz
yuzu-527b841c1567fd7552153eea0fdcee119e44c53f.tar.xz
yuzu-527b841c1567fd7552153eea0fdcee119e44c53f.tar.zst
yuzu-527b841c1567fd7552153eea0fdcee119e44c53f.zip
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/shader_bytecode.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h
index 82d912c76..203e7758c 100644
--- a/src/video_core/engines/shader_bytecode.h
+++ b/src/video_core/engines/shader_bytecode.h
@@ -1636,6 +1636,7 @@ public:
ICMP_RC,
ICMP_R,
ICMP_CR,
+ ICMP_IMM,
MUFU, // Multi-Function Operator
RRO_C, // Range Reduction Operator
RRO_R,
@@ -1903,6 +1904,7 @@ private:
INST("010100110100----", Id::ICMP_RC, Type::ArithmeticInteger, "ICMP_RC"),
INST("010110110100----", Id::ICMP_R, Type::ArithmeticInteger, "ICMP_R"),
INST("010010110100----", Id::ICMP_CR, Type::ArithmeticInteger, "ICMP_CR"),
+ INST("0011011-0100----", Id::ICMP_IMM, Type::ArithmeticInteger, "ICMP_IMM"),
INST("0101101111011---", Id::LEA_R2, Type::ArithmeticInteger, "LEA_R2"),
INST("0101101111010---", Id::LEA_R1, Type::ArithmeticInteger, "LEA_R1"),
INST("001101101101----", Id::LEA_IMM, Type::ArithmeticInteger, "LEA_IMM"),