summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2022-05-10 23:07:21 +0200
committerLiam <byteslice@airmail.cc>2022-05-10 23:07:21 +0200
commite158951695f6ed5626adc0685431a78c5a13867a (patch)
treebab8f3fc2bec9934968c7a8fd09ead2b93d5a1e6 /src/video_core/engines
parentMerge pull request #8320 from liamwhite/macro-dump (diff)
downloadyuzu-e158951695f6ed5626adc0685431a78c5a13867a.tar
yuzu-e158951695f6ed5626adc0685431a78c5a13867a.tar.gz
yuzu-e158951695f6ed5626adc0685431a78c5a13867a.tar.bz2
yuzu-e158951695f6ed5626adc0685431a78c5a13867a.tar.lz
yuzu-e158951695f6ed5626adc0685431a78c5a13867a.tar.xz
yuzu-e158951695f6ed5626adc0685431a78c5a13867a.tar.zst
yuzu-e158951695f6ed5626adc0685431a78c5a13867a.zip
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/maxwell_3d.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp
index d4652b167..7d0cb8fce 100644
--- a/src/video_core/engines/maxwell_3d.cpp
+++ b/src/video_core/engines/maxwell_3d.cpp
@@ -173,6 +173,8 @@ void Maxwell3D::ProcessMethodCall(u32 method, u32 argument, u32 nonshadow_argume
case MAXWELL3D_REG_INDEX(shadow_ram_control):
shadow_state.shadow_ram_control = static_cast<Regs::ShadowRamControl>(nonshadow_argument);
return;
+ case MAXWELL3D_REG_INDEX(macros.upload_address):
+ return macro_engine->ClearCode(regs.macros.upload_address);
case MAXWELL3D_REG_INDEX(macros.data):
return macro_engine->AddCode(regs.macros.upload_address, argument);
case MAXWELL3D_REG_INDEX(macros.bind):