aboutsummaryrefslogtreecommitdiff
path: root/src/core/src/core.cpp
diff options
context:
space:
mode:
authorShizZy <shizzy@6bit.net>2013-10-03 17:47:31 -0400
committerShizZy <shizzy@6bit.net>2013-10-03 17:47:31 -0400
commite0cb54ea35a79ce0268be8a20c0a6d6fb10d608a (patch)
tree65007fada1b869db926700b2f78eb4ff0546ad4c /src/core/src/core.cpp
parent9d79fc7aa690d3cbfbbca7df8ea0411145ee240c (diff)
moved some core functions over to system module
Diffstat (limited to 'src/core/src/core.cpp')
-rw-r--r--src/core/src/core.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/core/src/core.cpp b/src/core/src/core.cpp
index 5b118d4fbb..6ed7c5be8c 100644
--- a/src/core/src/core.cpp
+++ b/src/core/src/core.cpp
@@ -22,8 +22,8 @@
* http://code.google.com/p/gekko-gc-emu/
*/
+#include "log.h"
#include "core.h"
-#include "mem_map.h"
namespace Core {
@@ -52,9 +52,7 @@ void Stop() {
}
/// Initialize the core
-int Init(EmuWindow* emu_window) {
- Memory::Init();
-
+int Init() {
NOTICE_LOG(MASTER_LOG, "Core initialized OK");
return 0;
}