Include binary as an output option
This commit is contained in:
parent
f8d7c5d518
commit
4ba27ad4a7
2 changed files with 55 additions and 1 deletions
|
|
@ -4026,7 +4026,7 @@ if (DEBUGGER) {
|
|||
}
|
||||
if (!fError) {
|
||||
value = aVals.pop();
|
||||
if (fPrint) this.println(sExpOrig + "=" + value + " (" + str.toHexLong(value) + ")");
|
||||
if (fPrint) this.println(sExpOrig + "=" + str.toHex(value) + "h bin=" + str.toBinBytes(value) + " dec=" + value + '.');
|
||||
} else {
|
||||
if (fPrint) this.println("error parsing '" + sExpOrig + "' at character " + (sExpOrig.length - sExp.length));
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue