2014-04-08 23:15:46 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-08 23:15:46 +00:00
|
|
|
// Refer to the license.txt file included.
|
2013-10-01 23:10:47 +00:00
|
|
|
|
2014-04-09 00:15:08 +00:00
|
|
|
#include "core/core.h"
|
|
|
|
#include "core/core_timing.h"
|
|
|
|
#include "core/mem_map.h"
|
|
|
|
#include "core/system.h"
|
|
|
|
#include "core/hw/hw.h"
|
2014-04-11 02:45:40 +00:00
|
|
|
#include "core/hle/hle.h"
|
2014-06-11 02:43:50 +00:00
|
|
|
#include "core/hle/kernel/kernel.h"
|
2014-04-09 00:15:08 +00:00
|
|
|
|
|
|
|
#include "video_core/video_core.h"
|
2013-10-01 23:10:47 +00:00
|
|
|
|
|
|
|
namespace System {
|
|
|
|
|
2013-10-03 21:47:31 +00:00
|
|
|
void Init(EmuWindow* emu_window) {
|
2014-04-11 02:45:40 +00:00
|
|
|
Core::Init();
|
2015-01-09 02:48:18 +00:00
|
|
|
CoreTiming::Init();
|
2014-04-11 02:45:40 +00:00
|
|
|
Memory::Init();
|
2014-04-05 04:01:07 +00:00
|
|
|
HW::Init();
|
2014-12-14 07:55:11 +00:00
|
|
|
Kernel::Init();
|
2014-04-11 02:45:40 +00:00
|
|
|
HLE::Init();
|
2014-04-06 20:55:54 +00:00
|
|
|
VideoCore::Init(emu_window);
|
2013-10-01 23:10:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Shutdown() {
|
2014-04-06 20:55:54 +00:00
|
|
|
VideoCore::Shutdown();
|
2014-12-14 07:55:11 +00:00
|
|
|
HLE::Shutdown();
|
2014-06-11 02:43:50 +00:00
|
|
|
Kernel::Shutdown();
|
2014-12-14 07:55:11 +00:00
|
|
|
HW::Shutdown();
|
|
|
|
Memory::Shutdown();
|
2015-01-09 02:48:18 +00:00
|
|
|
CoreTiming::Shutdown();
|
2014-12-14 07:55:11 +00:00
|
|
|
Core::Shutdown();
|
2013-10-01 23:10:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|