Enable the Debugger to get/set front panel switches as register SW

This commit is contained in:
Jeff 2016-11-02 19:41:29 -07:00 committed by Jeff Parsons
commit b3bf213cd9
8 changed files with 563 additions and 454 deletions

View file

@ -681,7 +681,7 @@ if (DEBUGGER) {
var s;
switch(this.nBase) {
case 8:
s = str.toOct(n, nBytes * 3);
s = str.toOct(n, Math.round((8/3) * nBytes));
break;
case 10:
s = n.toString();