diff options
author | Tony Wasserka <neobrainx@gmail.com> | 2016-06-08 23:30:47 +0200 |
---|---|---|
committer | Tony Wasserka <neobrainx@gmail.com> | 2016-06-08 23:30:47 +0200 |
commit | ba4fb4109aaf8f12d6a63a2f2f5e839960b581f7 (patch) | |
tree | 5cc8dd2b2a8903e8a604f9825ecd92a52bbd24aa /src | |
parent | 98b1436b8bcbcf2b130b4b8d660e2c4f7ac1abe4 (diff) | |
parent | c6f87f7e2cd6036b9aa294392da35d476a4a5533 (diff) |
Merge pull request #1891 from shinyquagsire23/gdb-E0-fix
gdbstub: E0 should be E00
Diffstat (limited to 'src')
-rw-r--r-- | src/core/gdbstub/gdbstub.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/gdbstub/gdbstub.cpp b/src/core/gdbstub/gdbstub.cpp index 820b19e1a..28d403158 100644 --- a/src/core/gdbstub/gdbstub.cpp +++ b/src/core/gdbstub/gdbstub.cpp @@ -646,7 +646,7 @@ static void ReadMemory() { u8* data = Memory::GetPointer(addr); if (!data) { - return SendReply("E0"); + return SendReply("E00"); } MemToGdbHex(reply, data, len); |