Skip to content

Commit

Permalink
DolphinQt/Debugger/RegisterColumn: Add HID registers to the register …
Browse files Browse the repository at this point in the history
…pane

Adds the Hardware Implementation-Dependent registers to the register
pane, which makes it much nicer to see which hardware-specific features
are enabled or disabled.
  • Loading branch information
lioncash committed Mar 13, 2019
1 parent 7b354fa commit 02da306
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions Source/Core/DolphinQt/Debugger/RegisterColumn.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ enum class RegisterType
srr, // Machine status save/restore register (SRR0 - SRR1)
sr, // Segment register (SR0 - SR15)
gqr, // Graphics quantization registers (GQR0 - GQR7)
hid, // Hardware Implementation-Dependent registers (HID0-2, HID4)
exceptions, // Keeps track of currently triggered exceptions
int_mask, // ???
int_cause, // ???
Expand Down
10 changes: 10 additions & 0 deletions Source/Core/DolphinQt/Debugger/RegisterWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,16 @@ void RegisterWidget::PopulateTable()
[i] { return PowerPC::ppcState.spr[SPR_GQR0 + i]; }, nullptr);
}

// HID registers
AddRegister(24, 7, RegisterType::hid, "HID0", [] { return PowerPC::ppcState.spr[SPR_HID0]; },
[](u64 value) { PowerPC::ppcState.spr[SPR_HID0] = static_cast<u32>(value); });
AddRegister(25, 7, RegisterType::hid, "HID1", [] { return PowerPC::ppcState.spr[SPR_HID1]; },
[](u64 value) { PowerPC::ppcState.spr[SPR_HID1] = static_cast<u32>(value); });
AddRegister(26, 7, RegisterType::hid, "HID2", [] { return PowerPC::ppcState.spr[SPR_HID2]; },
[](u64 value) { PowerPC::ppcState.spr[SPR_HID2] = static_cast<u32>(value); });
AddRegister(27, 7, RegisterType::hid, "HID4", [] { return PowerPC::ppcState.spr[SPR_HID4]; },
[](u64 value) { PowerPC::ppcState.spr[SPR_HID4] = static_cast<u32>(value); });

for (int i = 0; i < 16; i++)
{
// SR registers
Expand Down

0 comments on commit 02da306

Please sign in to comment.