coreinfo: Pretty print RAM addresses
Instead of 500, print 0x00000500 in the ram dump module. Change-Id: Id250bd99f36dad4088ab88953fb371c400b4231b Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-on: https://review.coreboot.org/14072 Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
parent
1e6b86b8b6
commit
31575f6391
|
@ -30,7 +30,7 @@ static void dump_ram(WINDOW *win, uint32_t addr, int row, int col)
|
||||||
int i, x = 0, y = 0, count = 0;
|
int i, x = 0, y = 0, count = 0;
|
||||||
volatile uint8_t *ptr = (void *)(addr);
|
volatile uint8_t *ptr = (void *)(addr);
|
||||||
|
|
||||||
mvwprintw(win, 0, col + 54, "RAM address: %10x", addr);
|
mvwprintw(win, 0, col + 54, "RAM address: 0x%08x", addr);
|
||||||
|
|
||||||
/* Dump 256 bytes of RAM. */
|
/* Dump 256 bytes of RAM. */
|
||||||
for (i = 1; i < 257; i++) {
|
for (i = 1; i < 257; i++) {
|
||||||
|
|
Loading…
Reference in New Issue