diff options
| author | 2021-03-19 21:14:58 -0300 | |
|---|---|---|
| committer | 2021-07-22 21:51:23 -0400 | |
| commit | c97d03efb9e02f89cca6dfea4c8d5c37fc4a2adc (patch) | |
| tree | 29825907a8fbf4d866d8a67bf3c0fb53a85e8e72 /src/shader_recompiler/frontend | |
| parent | shader: Implement LOP32I (diff) | |
| download | yuzu-c97d03efb9e02f89cca6dfea4c8d5c37fc4a2adc.tar.gz yuzu-c97d03efb9e02f89cca6dfea4c8d5c37fc4a2adc.tar.xz yuzu-c97d03efb9e02f89cca6dfea4c8d5c37fc4a2adc.zip | |
shader: Implement ISCADD (imm)
Diffstat (limited to 'src/shader_recompiler/frontend')
| -rw-r--r-- | src/shader_recompiler/frontend/maxwell/translate/impl/integer_scaled_add.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/translate/impl/integer_scaled_add.cpp b/src/shader_recompiler/frontend/maxwell/translate/impl/integer_scaled_add.cpp index f06046d4d..5469e445a 100644 --- a/src/shader_recompiler/frontend/maxwell/translate/impl/integer_scaled_add.cpp +++ b/src/shader_recompiler/frontend/maxwell/translate/impl/integer_scaled_add.cpp | |||
| @@ -57,8 +57,8 @@ void TranslatorVisitor::ISCADD_cbuf(u64) { | |||
| 57 | throw NotImplementedException("ISCADD (cbuf)"); | 57 | throw NotImplementedException("ISCADD (cbuf)"); |
| 58 | } | 58 | } |
| 59 | 59 | ||
| 60 | void TranslatorVisitor::ISCADD_imm(u64) { | 60 | void TranslatorVisitor::ISCADD_imm(u64 insn) { |
| 61 | throw NotImplementedException("ISCADD (imm)"); | 61 | ISCADD(*this, insn, GetImm20(insn)); |
| 62 | } | 62 | } |
| 63 | 63 | ||
| 64 | void TranslatorVisitor::ISCADD32I(u64) { | 64 | void TranslatorVisitor::ISCADD32I(u64) { |