summaryrefslogtreecommitdiff
path: root/src/core/hle/service/gsp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/gsp.cpp')
-rw-r--r--src/core/hle/service/gsp.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/service/gsp.cpp b/src/core/hle/service/gsp.cpp
index 15e9d19a5..aabcb48db 100644
--- a/src/core/hle/service/gsp.cpp
+++ b/src/core/hle/service/gsp.cpp
@@ -126,6 +126,10 @@ void TriggerCmdReqQueue(Service::Interface* self) {
126 GPU::Write<u32>(GPU::Registers::CommandListAddress, cmd_buff[1] >> 3); 126 GPU::Write<u32>(GPU::Registers::CommandListAddress, cmd_buff[1] >> 3);
127 GPU::Write<u32>(GPU::Registers::CommandListSize, cmd_buff[2] >> 3); 127 GPU::Write<u32>(GPU::Registers::CommandListSize, cmd_buff[2] >> 3);
128 GPU::Write<u32>(GPU::Registers::ProcessCommandList, 1); // TODO: Not sure if we are supposed to always write this 128 GPU::Write<u32>(GPU::Registers::ProcessCommandList, 1); // TODO: Not sure if we are supposed to always write this
129
130 // TODO: Move this to GPU
131 // TODO: Not sure what units the size is measured in
132 g_debugger.CommandListCalled(cmd_buff[1], (u32*)Memory::GetPointer(cmd_buff[1]), cmd_buff[2]);
129 break; 133 break;
130 134
131 case GXCommandId::SET_MEMORY_FILL: 135 case GXCommandId::SET_MEMORY_FILL: