summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/frontend/maxwell/translate/impl/integer_minimum_maximum.cpp
diff options
context:
space:
mode:
authorFernandoS27 <fsahmkow27@gmail.com>2021-04-10 00:29:12 +0200
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-23 03:51:27 +0200
commit1be6705408d1a3454146c705fae3dc55031e966e (patch)
tree325133fcabd67f3e21fdb4096b5cc8c59875b7ad /src/shader_recompiler/frontend/maxwell/translate/impl/integer_minimum_maximum.cpp
parentshader: Remove outdated comment in F2I (diff)
downloadyuzu-1be6705408d1a3454146c705fae3dc55031e966e.tar
yuzu-1be6705408d1a3454146c705fae3dc55031e966e.tar.gz
yuzu-1be6705408d1a3454146c705fae3dc55031e966e.tar.bz2
yuzu-1be6705408d1a3454146c705fae3dc55031e966e.tar.lz
yuzu-1be6705408d1a3454146c705fae3dc55031e966e.tar.xz
yuzu-1be6705408d1a3454146c705fae3dc55031e966e.tar.zst
yuzu-1be6705408d1a3454146c705fae3dc55031e966e.zip
Diffstat (limited to 'src/shader_recompiler/frontend/maxwell/translate/impl/integer_minimum_maximum.cpp')
-rw-r--r--src/shader_recompiler/frontend/maxwell/translate/impl/integer_minimum_maximum.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/translate/impl/integer_minimum_maximum.cpp b/src/shader_recompiler/frontend/maxwell/translate/impl/integer_minimum_maximum.cpp
index 40f14ab8a..1badbacc4 100644
--- a/src/shader_recompiler/frontend/maxwell/translate/impl/integer_minimum_maximum.cpp
+++ b/src/shader_recompiler/frontend/maxwell/translate/impl/integer_minimum_maximum.cpp
@@ -16,9 +16,14 @@ void IMNMX(TranslatorVisitor& v, u64 insn, const IR::U32& op_b) {
BitField<39, 3, IR::Pred> pred;
BitField<42, 1, u64> neg_pred;
BitField<43, 2, u64> mode;
+ BitField<47, 1, u64> cc;
BitField<48, 1, u64> is_signed;
} const imnmx{insn};
+ if (imnmx.cc != 0) {
+ throw NotImplementedException("IMNMX CC");
+ }
+
if (imnmx.mode != 0) {
throw NotImplementedException("IMNMX.MODE");
}