|
|
@ -444,6 +444,10 @@ void System::InvalidateCpuInstructionCaches() { |
|
|
impl->kernel.InvalidateAllInstructionCaches(); |
|
|
impl->kernel.InvalidateAllInstructionCaches(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void System::Shutdown() { |
|
|
|
|
|
impl->Shutdown(); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
System::ResultStatus System::Load(Frontend::EmuWindow& emu_window, const std::string& filepath) { |
|
|
System::ResultStatus System::Load(Frontend::EmuWindow& emu_window, const std::string& filepath) { |
|
|
return impl->Load(*this, emu_window, filepath); |
|
|
return impl->Load(*this, emu_window, filepath); |
|
|
} |
|
|
} |
|
|
@ -752,14 +756,6 @@ const System::CurrentBuildProcessID& System::GetCurrentProcessBuildID() const { |
|
|
return impl->build_id; |
|
|
return impl->build_id; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
System::ResultStatus System::Init(Frontend::EmuWindow& emu_window) { |
|
|
|
|
|
return impl->Init(*this, emu_window); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void System::Shutdown() { |
|
|
|
|
|
impl->Shutdown(); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
Service::SM::ServiceManager& System::ServiceManager() { |
|
|
Service::SM::ServiceManager& System::ServiceManager() { |
|
|
return *impl->service_manager; |
|
|
return *impl->service_manager; |
|
|
} |
|
|
} |
|
|
|