HW/Memmap: Store reference to System in MemoryManager.

This commit is contained in:
Admiral H. Curtiss 2023-03-12 17:57:16 +01:00
commit ba852a7812
No known key found for this signature in database
GPG key ID: F051B4C4044F33FB
3 changed files with 28 additions and 20 deletions

View file

@ -37,7 +37,7 @@ 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_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)
{
}