mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-03 08:07:45 +00:00
Jit: Replace "msrBits" with "featureFlags"
Preparation for the next commit.
This commit is contained in:
parent
163acb5d2c
commit
ca7e05bbc4
24 changed files with 215 additions and 115 deletions
|
@ -448,7 +448,10 @@ void RegisterWidget::PopulateTable()
|
|||
// MSR
|
||||
AddRegister(
|
||||
23, 5, RegisterType::msr, "MSR", [this] { return m_system.GetPPCState().msr.Hex; },
|
||||
[this](u64 value) { m_system.GetPPCState().msr.Hex = value; });
|
||||
[this](u64 value) {
|
||||
m_system.GetPPCState().msr.Hex = value;
|
||||
PowerPC::MSRUpdated(m_system.GetPPCState());
|
||||
});
|
||||
|
||||
// SRR 0-1
|
||||
AddRegister(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue