-
Notifications
You must be signed in to change notification settings - Fork 16
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Currently, the CPU Memory visualization shows the address of EACH BYTE next to that byte's value. Additionally, the addresses are not aligned to an e.g. 8- or 16-byte boundary.
This makes it very busy visually, and hard to read versus other formats.
Consider instead the format shown by xxd (leading address zeroes stripped)
$ head -c 64 /dev/zero | xxd -c 16 -g 1 -o 0x210 | sed 's|00000||'
210: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................
220: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................
230: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................
240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................You might even want to add column headers for readability by new users, e.g.:
+0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +a +b +c +d +e +f
210: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................
220: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................
230: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................
240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................
(with obvious style hints to show that the row / column headers are separate from data)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request
