Merge pull request #1891 from shinyquagsire23/gdb-E0-fix
gdbstub: E0 should be E00
This commit is contained in:
commit
ba4fb4109a
|
@ -646,7 +646,7 @@ static void ReadMemory() {
|
|||
|
||||
u8* data = Memory::GetPointer(addr);
|
||||
if (!data) {
|
||||
return SendReply("E0");
|
||||
return SendReply("E00");
|
||||
}
|
||||
|
||||
MemToGdbHex(reply, data, len);
|
||||
|
|
Reference in New Issue