Jit: Replace "msrBits" with "featureFlags"

Preparation for the next commit.
This commit is contained in:
JosJuice
2023-06-23 15:12:35 +02:00
parent 163acb5d2c
commit ca7e05bbc4
24 changed files with 215 additions and 115 deletions

View File

@ -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(