summaryrefslogtreecommitdiffstats
path: root/src/core/system.cpp
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-06-11 04:43:50 +0200
committerbunnei <ericbunnie@gmail.com>2014-06-13 15:51:19 +0200
commitf49ac3a2d71f06d603b8401817a6dfd9dbc3c4bc (patch)
treef416ede76f0efb6f5e9c6365789dbfa2b48b0bd1 /src/core/system.cpp
parentEvent: Updated several log messages to be assertions. (diff)
downloadyuzu-f49ac3a2d71f06d603b8401817a6dfd9dbc3c4bc.tar
yuzu-f49ac3a2d71f06d603b8401817a6dfd9dbc3c4bc.tar.gz
yuzu-f49ac3a2d71f06d603b8401817a6dfd9dbc3c4bc.tar.bz2
yuzu-f49ac3a2d71f06d603b8401817a6dfd9dbc3c4bc.tar.lz
yuzu-f49ac3a2d71f06d603b8401817a6dfd9dbc3c4bc.tar.xz
yuzu-f49ac3a2d71f06d603b8401817a6dfd9dbc3c4bc.tar.zst
yuzu-f49ac3a2d71f06d603b8401817a6dfd9dbc3c4bc.zip
Diffstat (limited to 'src/core/system.cpp')
-rw-r--r--src/core/system.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/system.cpp b/src/core/system.cpp
index c77092327..9b1e96888 100644
--- a/src/core/system.cpp
+++ b/src/core/system.cpp
@@ -8,6 +8,7 @@
#include "core/system.h"
#include "core/hw/hw.h"
#include "core/hle/hle.h"
+#include "core/hle/kernel/kernel.h"
#include "video_core/video_core.h"
@@ -26,6 +27,7 @@ void Init(EmuWindow* emu_window) {
HLE::Init();
CoreTiming::Init();
VideoCore::Init(emu_window);
+ Kernel::Init();
}
void RunLoopFor(int cycles) {
@@ -42,6 +44,7 @@ void Shutdown() {
HLE::Shutdown();
CoreTiming::Shutdown();
VideoCore::Shutdown();
+ Kernel::Shutdown();
g_ctr_file_system.Shutdown();
}