mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-09-06 18:41:58 -05:00
PowerPC: Refactor to class, move to System.
This commit is contained in:
@@ -409,7 +409,9 @@ void RegisterWidget::PopulateTable()
|
||||
|
||||
// Special registers
|
||||
// TB
|
||||
AddRegister(16, 5, RegisterType::tb, "TB", PowerPC::ReadFullTimeBaseValue, nullptr);
|
||||
AddRegister(
|
||||
16, 5, RegisterType::tb, "TB",
|
||||
[this] { return m_system.GetPowerPC().ReadFullTimeBaseValue(); }, nullptr);
|
||||
|
||||
// PC
|
||||
AddRegister(
|
||||
|
||||
Reference in New Issue
Block a user