Merge pull request #11988 from JosJuice/jit-feature-flags

Jit: Replace "msrBits" with "featureFlags" and use for performance monitor
This commit is contained in:
Mai
2023-12-05 03:13:50 -05:00
committed by GitHub
31 changed files with 291 additions and 140 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(