aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Debugger/debug_hexutils.S4
1 files changed, 3 insertions, 1 deletions
diff --git a/Debugger/debug_hexutils.S b/Debugger/debug_hexutils.S
index d54445b..267406f 100644
--- a/Debugger/debug_hexutils.S
+++ b/Debugger/debug_hexutils.S
@@ -22,7 +22,9 @@
.align 4
hex2char_lut:
- .ascii "0123456789ABCDEF"
+ /* .ascii "0123456789ABCDEF" */
+ /* Need to use lowercase hex chars to avoid confusion with GDB Error (E NN) response */
+ .ascii "0123456789abcdef"
/* Macros
*/