mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06: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