summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
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;
}