Access one byte (8 bits) at a time.
Only the least significant 8 bits of the pattern will be used.
-1
-2
Access two bytes (16 bits) at a time.
Only the least significant 16 bits of the pattern will be used.
-1
-4
Access one word (32 bits) at a time.
-1
Description
Display a range of memory on the system console.
The x is a synonym for dump.
Note that this command could
be detrimental if used on memory mapped hardware registers.
The memory is displayed at most sixteen bytes per line, first as the
raw hex value, followed by an ASCII interpretation of the data.
Examples
Display a buffer, one byte at a time.
RedBoot> mfill -b 0x100000 -l 0x20 -p 0xDEADFACE
RedBoot> x -b 0x100000
00100000: CE FA AD DE CE FA AD DE CE FA AD DE CE FA AD DE |................|
00100010: CE FA AD DE CE FA AD DE CE FA AD DE CE FA AD DE |................|
Display a buffer, one short (16 bit) word at a time. Note in this case that
the ASCII interpretation is suppressed.
RedBoot> dump -b 0x100000 -2
00100000: FACE DEAD FACE DEAD FACE DEAD FACE DEAD
00100010: FACE DEAD FACE DEAD FACE DEAD FACE DEAD
Display a buffer, one word (32 bit) word at a time. Note in this case that
the ASCII interpretation is suppressed.