yuzu-mainline/src/core/system.cpp

41 lines
832 B
C++
Raw Normal View History

2014-04-08 16:15:46 -07:00
// Copyright 2014 Citra Emulator Project
2014-12-16 21:38:14 -08:00
// Licensed under GPLv2 or any later version
2014-04-08 16:15:46 -07:00
// Refer to the license.txt file included.
#include "core/core.h"
#include "core/core_timing.h"
#include "core/system.h"
#include "core/hw/hw.h"
2014-04-10 19:45:40 -07:00
#include "core/hle/hle.h"
#include "core/hle/kernel/kernel.h"
#include "core/hle/kernel/memory.h"
#include "video_core/video_core.h"
2015-09-02 05:56:38 -07:00
#include "core/gdbstub/gdbstub.h"
namespace System {
void Init(EmuWindow* emu_window) {
2014-04-10 19:45:40 -07:00
Core::Init();
CoreTiming::Init();
2014-04-10 19:45:40 -07:00
Memory::Init();
HW::Init();
Kernel::Init();
2014-04-10 19:45:40 -07:00
HLE::Init();
2014-04-06 13:55:54 -07:00
VideoCore::Init(emu_window);
2015-09-02 05:56:38 -07:00
GDBStub::Init();
}
void Shutdown() {
GDBStub::Shutdown();
2014-04-06 13:55:54 -07:00
VideoCore::Shutdown();
HLE::Shutdown();
Kernel::Shutdown();
HW::Shutdown();
CoreTiming::Shutdown();
Core::Shutdown();
}
} // namespace