summaryrefslogtreecommitdiffstats
path: root/src/core/debugger/gdbstub.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2022-11-13 03:04:00 +0100
committerGitHub <noreply@github.com>2022-11-13 03:04:00 +0100
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
yuzu-040a01a5ddf1dc3c8a3c992034803f54e9f2a7af.tar.gz
yuzu-040a01a5ddf1dc3c8a3c992034803f54e9f2a7af.tar.bz2
yuzu-040a01a5ddf1dc3c8a3c992034803f54e9f2a7af.tar.lz
yuzu-040a01a5ddf1dc3c8a3c992034803f54e9f2a7af.tar.xz
yuzu-040a01a5ddf1dc3c8a3c992034803f54e9f2a7af.tar.zst
yuzu-040a01a5ddf1dc3c8a3c992034803f54e9f2a7af.zip
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:
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;