Skip to content

CPU Memory Visualization is Crowded #6

@zachriggle

Description

@zachriggle

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.

screen shot 2018-12-18 at 4 46 47 pm

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)

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions