forked from eden-emu/eden
Implement gdbstub
This commit is contained in:
parent
addef06081
commit
31dee93e84
18 changed files with 1174 additions and 9 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue