aboutsummaryrefslogtreecommitdiff
path: root/Debugger
diff options
context:
space:
mode:
authorTat-Chee Wan (USM)2011-07-12 13:26:14 +0800
committerTat-Chee Wan (USM)2011-07-12 13:26:14 +0800
commitac98beb0b3b8b0d67e7c599ade2cc2b01dd80bde (patch)
tree1174af7002433cafae73534599738e8ea4988fb2 /Debugger
parentca5ac8bff5119c6ee644c774eb2707a6e6cc245f (diff)
return lowecase hex chars to avoid conflict with gdb error response
GDB error response starts with E NN, which can be triggered if the hex value starts with an E digit. Use lowercase hex digits to avoid this conflict.
Diffstat (limited to 'Debugger')
-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
*/