summaryrefslogtreecommitdiffstats
path: root/src/core/debugger/gdbstub.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2022-11-11 01:17:54 +0100
committerLiam <byteslice@airmail.cc>2022-11-11 01:20:57 +0100
commit18123ff958b0a4d877dab45a54637245c3b296ba (patch)
treef8216a2d97b604b03bee20c475d2ee88edab9204 /src/core/debugger/gdbstub.h
parentdebugger: allow more than one connection attempt per session (diff)
downloadyuzu-18123ff958b0a4d877dab45a54637245c3b296ba.tar
yuzu-18123ff958b0a4d877dab45a54637245c3b296ba.tar.gz
yuzu-18123ff958b0a4d877dab45a54637245c3b296ba.tar.bz2
yuzu-18123ff958b0a4d877dab45a54637245c3b296ba.tar.lz
yuzu-18123ff958b0a4d877dab45a54637245c3b296ba.tar.xz
yuzu-18123ff958b0a4d877dab45a54637245c3b296ba.tar.zst
yuzu-18123ff958b0a4d877dab45a54637245c3b296ba.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;