Skip to content

Commit

Permalink
Add: Header in Dump
Browse files Browse the repository at this point in the history
  • Loading branch information
rizwan3d committed Oct 15, 2023
1 parent 1a07d33 commit 7726509
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SharpRISCV.Core/BytesConsoleOutputBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public static string Build(List<byte> bytes)
int bytesPerLine = 16;
int byteCount = 0;
StringBuilder hexEditorOutput = new StringBuilder();

hexEditorOutput.Append(" 0 1 2 3 4 4 6 7 8 9 A B C D E F").AppendLine();
foreach (byte b in bytes)
{
if (byteCount % bytesPerLine == 0)
Expand Down

0 comments on commit 7726509

Please sign in to comment.