mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 04:08:55 +00:00
PowerPC: Move a few functions to PowerPCState.
This commit is contained in:
parent
0dcf228aaf
commit
61ba516570
9 changed files with 124 additions and 139 deletions
|
@ -422,8 +422,8 @@ void RegisterWidget::PopulateTable()
|
|||
|
||||
// XER
|
||||
AddRegister(
|
||||
21, 5, RegisterType::xer, "XER", [] { return PowerPC::GetXER().Hex; },
|
||||
[](u64 value) { PowerPC::SetXER(UReg_XER(value)); });
|
||||
21, 5, RegisterType::xer, "XER", [] { return PowerPC::ppcState.GetXER().Hex; },
|
||||
[](u64 value) { PowerPC::ppcState.SetXER(UReg_XER(value)); });
|
||||
|
||||
// FPSCR
|
||||
AddRegister(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue