summaryrefslogtreecommitdiff
path: root/src/core/debugger/gdbstub.h
diff options
context:
space:
mode:
authorGravatar liamwhite2022-11-12 21:04:00 -0500
committerGravatar GitHub2022-11-12 21:04:00 -0500
commit040a01a5ddf1dc3c8a3c992034803f54e9f2a7af (patch)
treeda068a23b8637fc094a31f7336c088c988a99fd7 /src/core/debugger/gdbstub.h
parentMerge pull request #9235 from goldenx86/ignorearm (diff)
parentgdbstub: add ams monitor commands (diff)
downloadyuzu-040a01a5ddf1dc3c8a3c992034803f54e9f2a7af.tar.gz
yuzu-040a01a5ddf1dc3c8a3c992034803f54e9f2a7af.tar.xz
yuzu-040a01a5ddf1dc3c8a3c992034803f54e9f2a7af.zip
Merge pull request #9225 from liamwhite/debugger-instance
Debugger improvements
Diffstat (limited to 'src/core/debugger/gdbstub.h')
-rw-r--r--src/core/debugger/gdbstub.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/debugger/gdbstub.h b/src/core/debugger/gdbstub.h
index 0b0f56e4b..368197920 100644
--- a/src/core/debugger/gdbstub.h
+++ b/src/core/debugger/gdbstub.h
@@ -32,6 +32,7 @@ private:
32 void ExecuteCommand(std::string_view packet, std::vector<DebuggerAction>& actions); 32 void ExecuteCommand(std::string_view packet, std::vector<DebuggerAction>& actions);
33 void HandleVCont(std::string_view command, std::vector<DebuggerAction>& actions); 33 void HandleVCont(std::string_view command, std::vector<DebuggerAction>& actions);
34 void HandleQuery(std::string_view command); 34 void HandleQuery(std::string_view command);
35 void HandleRcmd(const std::vector<u8>& command);
35 void HandleBreakpointInsert(std::string_view command); 36 void HandleBreakpointInsert(std::string_view command);
36 void HandleBreakpointRemove(std::string_view command); 37 void HandleBreakpointRemove(std::string_view command);
37 std::vector<char>::const_iterator CommandEnd() const; 38 std::vector<char>::const_iterator CommandEnd() const;