diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2022-11-12 21:04:00 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-12 21:04:00 -0500 |
commit | 040a01a5ddf1dc3c8a3c992034803f54e9f2a7af (patch) | |
tree | da068a23b8637fc094a31f7336c088c988a99fd7 /src/core/debugger/gdbstub.h | |
parent | 8cc5ad8742a2cc4bc0c8c3eb6a9034604ca2f81b (diff) | |
parent | 18123ff958b0a4d877dab45a54637245c3b296ba (diff) |
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.h | 1 |
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: void ExecuteCommand(std::string_view packet, std::vector<DebuggerAction>& actions); void HandleVCont(std::string_view command, std::vector<DebuggerAction>& actions); void HandleQuery(std::string_view command); + void HandleRcmd(const std::vector<u8>& command); void HandleBreakpointInsert(std::string_view command); void HandleBreakpointRemove(std::string_view command); std::vector<char>::const_iterator CommandEnd() const; |