summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-06-25 12:31:20 -0700
committerGitHub <noreply@github.com>2022-06-25 12:31:20 -0700
commitb321c3937137120f27a54ae01decf94f7fa781d1 (patch)
treebc9de62020e35f68361dc45de3a9452ea312f78b /src
parent95b844dbae8bf9352f08563e816a198feba51ee9 (diff)
parent19f475fd70f1a522afdbc2f85bb6b23141ac18c0 (diff)
Merge pull request #8500 from liamwhite/poke
gdbstub: fix register pokes
Diffstat (limited to 'src')
-rw-r--r--src/core/debugger/gdbstub.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/debugger/gdbstub.cpp b/src/core/debugger/gdbstub.cpp
index f5e9a303d..884229c77 100644
--- a/src/core/debugger/gdbstub.cpp
+++ b/src/core/debugger/gdbstub.cpp
@@ -252,6 +252,7 @@ void GDBStub::ExecuteCommand(std::string_view packet, std::vector<DebuggerAction
const auto sep{std::find(command.begin(), command.end(), '=') - command.begin() + 1};
const size_t reg{static_cast<size_t>(strtoll(command.data(), nullptr, 16))};
arch->RegWrite(backend.GetActiveThread(), reg, std::string_view(command).substr(sep));
+ SendReply(GDB_STUB_REPLY_OK);
break;
}
case 'm': {