mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-11-15 11:50:05 +00:00
Merge pull request #8500 from liamwhite/poke
gdbstub: fix register pokes
This commit is contained in:
commit
b321c39371
@ -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 auto sep{std::find(command.begin(), command.end(), '=') - command.begin() + 1};
|
||||||
const size_t reg{static_cast<size_t>(strtoll(command.data(), nullptr, 16))};
|
const size_t reg{static_cast<size_t>(strtoll(command.data(), nullptr, 16))};
|
||||||
arch->RegWrite(backend.GetActiveThread(), reg, std::string_view(command).substr(sep));
|
arch->RegWrite(backend.GetActiveThread(), reg, std::string_view(command).substr(sep));
|
||||||
|
SendReply(GDB_STUB_REPLY_OK);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case 'm': {
|
case 'm': {
|
||||||
|
Loading…
Reference in New Issue
Block a user