HW/ProcessorInterface: Store reference to System in class.

This commit is contained in:
Admiral H. Curtiss 2023-03-12 18:13:43 +01:00
commit 31d33d0efd
No known key found for this signature in database
GPG key ID: F051B4C4044F33FB
3 changed files with 27 additions and 13 deletions

View file

@ -38,7 +38,8 @@ struct System::Impl
explicit Impl(System& system)
: m_audio_interface(system), m_core_timing(system), m_dsp(system), m_dvd_interface(system),
m_dvd_thread(system), m_expansion_interface(system), m_gp_fifo(system), m_memory(system),
m_ppc_state(PowerPC::ppcState), m_serial_interface(system), m_video_interface(system)
m_ppc_state(PowerPC::ppcState), m_processor_interface(system), m_serial_interface(system),
m_video_interface(system)
{
}