Skip to content

Commit

Permalink
tweak todo comment
Browse files Browse the repository at this point in the history
  • Loading branch information
christo committed Dec 23, 2024
1 parent e40fc2f commit 801358d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/machine/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,8 @@ const hexDumper: (fb: FileBlob) => UserAction = (fb: FileBlob) => ({
label: "Hex Dump",
f: () => {
const elements: Tag[] = Array.from(fb.getBytes()).map((x) => new Tag(TAG_HEXBYTE, hex8(x)));
// TODO make hex dump have n bytes per line with addresses at beginning of each
// currently whole hex dump is a single logical line at no address with no instruction
// TODO make hex dump have n bytes per line with addresses at beginning of each;
// currently whole hex dump is a single logical line at no address with no instruction
const oldDataView: Tag[][] = [elements];
const lls = oldDataView.map((ts: Tag[], i: number) => new LogicalLine(ts, i));
const newDataView: DataView = new DataViewImpl(lls);
Expand Down

0 comments on commit 801358d

Please sign in to comment.