early-access version 2801
This commit is contained in:
parent
a2c0c22feb
commit
b5e6a58c48
2 changed files with 2 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
yuzu emulator early access
|
yuzu emulator early access
|
||||||
=============
|
=============
|
||||||
|
|
||||||
This is the source code for early-access 2800.
|
This is the source code for early-access 2801.
|
||||||
|
|
||||||
## Legal Notice
|
## Legal Notice
|
||||||
|
|
||||||
|
|
|
@ -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 a new issue