Include binary as an output option

This commit is contained in:
Jeff Parsons 2015-07-23 17:41:27 -07:00
commit 4ba27ad4a7
2 changed files with 55 additions and 1 deletions

View file

@ -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));
}