diff options
| author | 2015-11-11 23:21:31 -0500 | |
|---|---|---|
| committer | 2015-11-11 23:21:31 -0500 | |
| commit | 43bb29edc5a07ee290a462dc72743d96eaadd70d (patch) | |
| tree | c42780b313be023001c41c32a6f6090fe93c2afe /src/core/system.cpp | |
| parent | Merge pull request #1236 from Subv/log_overflow (diff) | |
| parent | Fix bug with reading addresses and lengths (diff) | |
| download | yuzu-43bb29edc5a07ee290a462dc72743d96eaadd70d.tar.gz yuzu-43bb29edc5a07ee290a462dc72743d96eaadd70d.tar.xz yuzu-43bb29edc5a07ee290a462dc72743d96eaadd70d.zip | |
Merge pull request #1122 from polaris-/gdbstub
gdbstub implementation
Diffstat (limited to 'src/core/system.cpp')
| -rw-r--r-- | src/core/system.cpp | 4 |
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 @@ | |||
| 12 | 12 | ||
| 13 | #include "video_core/video_core.h" | 13 | #include "video_core/video_core.h" |
| 14 | 14 | ||
| 15 | #include "core/gdbstub/gdbstub.h" | ||
| 16 | |||
| 15 | namespace System { | 17 | namespace System { |
| 16 | 18 | ||
| 17 | void Init(EmuWindow* emu_window) { | 19 | void Init(EmuWindow* emu_window) { |
| @@ -22,9 +24,11 @@ void Init(EmuWindow* emu_window) { | |||
| 22 | Kernel::Init(); | 24 | Kernel::Init(); |
| 23 | HLE::Init(); | 25 | HLE::Init(); |
| 24 | VideoCore::Init(emu_window); | 26 | VideoCore::Init(emu_window); |
| 27 | GDBStub::Init(); | ||
| 25 | } | 28 | } |
| 26 | 29 | ||
| 27 | void Shutdown() { | 30 | void Shutdown() { |
| 31 | GDBStub::Shutdown(); | ||
| 28 | VideoCore::Shutdown(); | 32 | VideoCore::Shutdown(); |
| 29 | HLE::Shutdown(); | 33 | HLE::Shutdown(); |
| 30 | Kernel::Shutdown(); | 34 | Kernel::Shutdown(); |