diff options
Diffstat (limited to 'src/shader_recompiler')
| -rw-r--r-- | src/shader_recompiler/frontend/maxwell/translate/impl/integer_to_integer_conversion.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/translate/impl/integer_to_integer_conversion.cpp b/src/shader_recompiler/frontend/maxwell/translate/impl/integer_to_integer_conversion.cpp index ca28c6dd9..e8f35552c 100644 --- a/src/shader_recompiler/frontend/maxwell/translate/impl/integer_to_integer_conversion.cpp +++ b/src/shader_recompiler/frontend/maxwell/translate/impl/integer_to_integer_conversion.cpp | |||
| @@ -52,10 +52,14 @@ void I2I(TranslatorVisitor& v, u64 insn, const IR::U32& src_a) { | |||
| 52 | BitField<13, 1, u64> src_fmt_sign; | 52 | BitField<13, 1, u64> src_fmt_sign; |
| 53 | BitField<41, 3, u64> selector; | 53 | BitField<41, 3, u64> selector; |
| 54 | BitField<45, 1, u64> neg; | 54 | BitField<45, 1, u64> neg; |
| 55 | BitField<47, 1, u64> cc; | ||
| 55 | BitField<49, 1, u64> abs; | 56 | BitField<49, 1, u64> abs; |
| 56 | BitField<50, 1, u64> sat; | 57 | BitField<50, 1, u64> sat; |
| 57 | } const i2i{insn}; | 58 | } const i2i{insn}; |
| 58 | 59 | ||
| 60 | if (i2i.cc != 0) { | ||
| 61 | throw NotImplementedException("I2I CC"); | ||
| 62 | } | ||
| 59 | if (i2i.sat != 0) { | 63 | if (i2i.sat != 0) { |
| 60 | throw NotImplementedException("I2I SAT"); | 64 | throw NotImplementedException("I2I SAT"); |
| 61 | } | 65 | } |