summaryrefslogtreecommitdiff
path: root/src/core/system.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-11-11 23:21:31 -0500
committerbunnei <bunneidev@gmail.com>2015-11-11 23:21:31 -0500
commit43bb29edc5a07ee290a462dc72743d96eaadd70d (patch)
treec42780b313be023001c41c32a6f6090fe93c2afe /src/core/system.cpp
parent1463127fade260bb38dea80401380f24660ec778 (diff)
parentbcea9599100a0df945629cd50be066ae9dabf89f (diff)
Merge pull request #1122 from polaris-/gdbstub
gdbstub implementation
Diffstat (limited to 'src/core/system.cpp')
-rw-r--r--src/core/system.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/system.cpp b/src/core/system.cpp
index 3cd84bf5e..7e9c56538 100644
--- a/src/core/system.cpp
+++ b/src/core/system.cpp
@@ -12,6 +12,8 @@
#include "video_core/video_core.h"
+#include "core/gdbstub/gdbstub.h"
+
namespace System {
void Init(EmuWindow* emu_window) {
@@ -22,9 +24,11 @@ void Init(EmuWindow* emu_window) {
Kernel::Init();
HLE::Init();
VideoCore::Init(emu_window);
+ GDBStub::Init();
}
void Shutdown() {
+ GDBStub::Shutdown();
VideoCore::Shutdown();
HLE::Shutdown();
Kernel::Shutdown();