summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorShizZy <shizzy@6bit.net>2013-09-08 19:17:27 +0200
committerShizZy <shizzy@6bit.net>2013-09-08 19:17:27 +0200
commit6847033b27cb07c566d75fb291131910a4296702 (patch)
tree83675e98f19a6dc597c90a139c70b0a18d713c9b /src/core
parentstart of 3DS memory map (diff)
downloadyuzu-6847033b27cb07c566d75fb291131910a4296702.tar
yuzu-6847033b27cb07c566d75fb291131910a4296702.tar.gz
yuzu-6847033b27cb07c566d75fb291131910a4296702.tar.bz2
yuzu-6847033b27cb07c566d75fb291131910a4296702.tar.lz
yuzu-6847033b27cb07c566d75fb291131910a4296702.tar.xz
yuzu-6847033b27cb07c566d75fb291131910a4296702.tar.zst
yuzu-6847033b27cb07c566d75fb291131910a4296702.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/src/core.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/src/core.cpp b/src/core/src/core.cpp
index 4e956fde3..61e3a8df4 100644
--- a/src/core/src/core.cpp
+++ b/src/core/src/core.cpp
@@ -23,6 +23,7 @@
*/
#include "core.h"
+#include "mem_map.h"
namespace Core {
@@ -40,6 +41,7 @@ void Stop() {
/// Initialize the core
int Init(EmuWindow* emu_window) {
+ Memory::Init();
return 0;
}