From c6f87f7e2cd6036b9aa294392da35d476a4a5533 Mon Sep 17 00:00:00 2001 From: shinyquagsire23 Date: Wed, 8 Jun 2016 14:14:59 -0700 Subject: [PATCH] gdbstub: E0 should be E00 --- src/core/gdbstub/gdbstub.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);