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.
|
2013-10-01 16:10:47 -07:00
|
|
|
|
2016-02-21 05:13:52 -08:00
|
|
|
#include "audio_core/audio_core.h"
|
|
|
|
|
2014-04-08 17:15:08 -07:00
|
|
|
#include "core/core.h"
|
|
|
|
#include "core/core_timing.h"
|
|
|
|
#include "core/system.h"
|
2016-02-21 05:13:52 -08:00
|
|
|
#include "core/gdbstub/gdbstub.h"
|
2014-04-08 17:15:08 -07:00
|
|
|
#include "core/hw/hw.h"
|
2014-04-10 19:45:40 -07:00
|
|
|
#include "core/hle/hle.h"
|
2014-06-10 19:43:50 -07:00
|
|
|
#include "core/hle/kernel/kernel.h"
|
2015-07-29 08:08:00 -07:00
|
|
|
#include "core/hle/kernel/memory.h"
|
2014-04-08 17:15:08 -07:00
|
|
|
|
|
|
|
#include "video_core/video_core.h"
|
2013-10-01 16:10:47 -07:00
|
|
|
|
|
|
|
namespace System {
|
|
|
|
|
2016-01-07 11:33:54 -08:00
|
|
|
Result Init(EmuWindow* emu_window) {
|
2014-04-10 19:45:40 -07:00
|
|
|
Core::Init();
|
2015-01-08 18:48:18 -08:00
|
|
|
CoreTiming::Init();
|
2014-04-10 19:45:40 -07:00
|
|
|
Memory::Init();
|
2014-04-04 21:01:07 -07:00
|
|
|
HW::Init();
|
2014-12-13 23:55:11 -08:00
|
|
|
Kernel::Init();
|
2014-04-10 19:45:40 -07:00
|
|
|
HLE::Init();
|
2016-01-07 11:33:54 -08:00
|
|
|
if (!VideoCore::Init(emu_window)) {
|
|
|
|
return Result::ErrorInitVideoCore;
|
|
|
|
}
|
2016-02-21 05:13:52 -08:00
|
|
|
AudioCore::Init();
|
2015-09-02 05:56:38 -07:00
|
|
|
GDBStub::Init();
|
2016-03-09 13:20:08 -08:00
|
|
|
|
|
|
|
return Result::Success;
|
2013-10-01 16:10:47 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void Shutdown() {
|
2015-10-11 17:07:58 -07:00
|
|
|
GDBStub::Shutdown();
|
2016-02-21 05:13:52 -08:00
|
|
|
AudioCore::Shutdown();
|
2014-04-06 13:55:54 -07:00
|
|
|
VideoCore::Shutdown();
|
2014-12-13 23:55:11 -08:00
|
|
|
HLE::Shutdown();
|
2014-06-10 19:43:50 -07:00
|
|
|
Kernel::Shutdown();
|
2014-12-13 23:55:11 -08:00
|
|
|
HW::Shutdown();
|
2015-01-08 18:48:18 -08:00
|
|
|
CoreTiming::Shutdown();
|
2014-12-13 23:55:11 -08:00
|
|
|
Core::Shutdown();
|
2013-10-01 16:10:47 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|