diff options
author | polaris- <nagatospam@gmail.com> | 2015-09-02 08:56:38 -0400 |
---|---|---|
committer | polaris- <nagatospam@gmail.com> | 2015-10-04 11:16:59 -0400 |
commit | 31dee93e849d79a91f280faf16941806e3cb3c6b (patch) | |
tree | 22f64217b38dfa38b25a772f9fc5a9b025e1cbd6 /src/core/system.cpp | |
parent | addef06081c368928f1e76d929a8f176a6209eb2 (diff) |
Implement gdbstub
Diffstat (limited to 'src/core/system.cpp')
-rw-r--r-- | src/core/system.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/system.cpp b/src/core/system.cpp index 3cd84bf5e0..421fc48a78 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,13 @@ void Init(EmuWindow* emu_window) { Kernel::Init(); HLE::Init(); VideoCore::Init(emu_window); + + GDBStub::Init(); } void Shutdown() { + GDBStub::Deinit(); + VideoCore::Shutdown(); HLE::Shutdown(); Kernel::Shutdown(); |