mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-13 22:07:55 -05:00
Implement gdbstub
This commit is contained in:
@ -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();
|
||||
|
Reference in New Issue
Block a user