From 7589ade972b6e748ecfb4cef589d2753bfae9355 Mon Sep 17 00:00:00 2001 From: bobjrsenior Date: Sun, 10 Dec 2017 14:58:10 -0500 Subject: [PATCH] DolphinWX: Add TB and GQR to Register Window The Time Base Register was added under the BAT registers. TBL and TBU were ORed together to get one 64-bit value to display. It is labeled TB The Graphics Quantisation Registers were added under the Segment Registers. They are Labeled GQR0-GQR7. All new registers are read only. --- Source/Core/DolphinWX/Debugger/RegisterView.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/Source/Core/DolphinWX/Debugger/RegisterView.cpp b/Source/Core/DolphinWX/Debugger/RegisterView.cpp index 8b0546bbd1bb..cbe0868243a3 100644 --- a/Source/Core/DolphinWX/Debugger/RegisterView.cpp +++ b/Source/Core/DolphinWX/Debugger/RegisterView.cpp @@ -2,6 +2,7 @@ // Licensed under GPLv2+ // Refer to the license.txt file included. +#include #include #include #include @@ -301,6 +302,9 @@ wxString CRegTable::GetValue(int row, int col) if (row < 16) return wxString::Format("IBAT%01d", row - 8); + if (row == 16) + return wxString::Format("TB"); + break; } case 6: @@ -324,6 +328,11 @@ wxString CRegTable::GetValue(int row, int col) << 32 | PowerPC::ppcState.spr[SPR_IBAT4L + (row - 16) * 2]); + if (row == 16) + return wxString::Format("%016" PRIx64, static_cast(PowerPC::ppcState.spr[SPR_TU]) + << 32 | + PowerPC::ppcState.spr[SPR_TL]); + break; } case 7: @@ -331,6 +340,9 @@ wxString CRegTable::GetValue(int row, int col) if (row < 16) return wxString::Format("SR%02d", row); + if (row < 24) + return wxString::Format("GQR%01d", row - 16); + break; } case 8: @@ -338,6 +350,9 @@ wxString CRegTable::GetValue(int row, int col) if (row < 16) return wxString::Format("%08x", PowerPC::ppcState.sr[row]); + if (row < 24) + return wxString::Format("%08x", PowerPC::ppcState.spr[SPR_GQR0 + (row - 16)]); + break; } default: