cmd-hex: Dump absolute memory address.
Seeing zeros is quite confusing - you never know if you mistypes something (there's not even a number format error reporting), or something else.
This commit is contained in:
parent
a02ae82f67
commit
69ad4d5eca
1 changed files with 1 additions and 1 deletions
2
utils.c
2
utils.c
|
@ -36,7 +36,7 @@ int serial_print_hex_offset(const void *block, int count, int offset)
|
|||
count += offset;
|
||||
b -= offset;
|
||||
for ( ; offset < count; offset += 16) {
|
||||
serial_puth(offset, 8);
|
||||
serial_puth((uint32_t)b + offset, 8);
|
||||
|
||||
for (byte = 0; byte < 16; byte++) {
|
||||
if (byte == 8)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue