| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- // Copyright 2014 Citra Emulator Project
- // Licensed under GPLv2 or any later version
- // Refer to the license.txt file included.
- #include "audio_core/audio_core.h"
- #include "core/core.h"
- #include "core/core_timing.h"
- #include "core/gdbstub/gdbstub.h"
- #include "core/hle/hle.h"
- #include "core/hle/kernel/kernel.h"
- #include "core/hle/kernel/memory.h"
- #include "core/hw/hw.h"
- #include "core/system.h"
- #include "video_core/video_core.h"
- namespace System {
- static bool is_powered_on{false};
- Result Init(EmuWindow* emu_window, u32 system_mode) {
- Core::Init();
- CoreTiming::Init();
- Memory::Init();
- HW::Init();
- Kernel::Init(system_mode);
- HLE::Init();
- if (!VideoCore::Init(emu_window)) {
- return Result::ErrorInitVideoCore;
- }
- AudioCore::Init();
- GDBStub::Init();
- is_powered_on = true;
- return Result::Success;
- }
- bool IsPoweredOn() {
- return is_powered_on;
- }
- void Shutdown() {
- GDBStub::Shutdown();
- AudioCore::Shutdown();
- VideoCore::Shutdown();
- HLE::Shutdown();
- Kernel::Shutdown();
- HW::Shutdown();
- CoreTiming::Shutdown();
- Core::Shutdown();
- is_powered_on = false;
- }
- } // namespace
|