More Video DEBUG support, and more disk images

This commit is contained in:
Jeff Parsons 2015-07-27 07:48:01 -07:00
commit a1e3c366eb
24 changed files with 153 additions and 6 deletions

View file

@ -5491,6 +5491,17 @@ if (DEBUGGER) {
}
};
/**
* doPrint(sCmd)
*
* @this {Debugger}
* @param {string} sCmd
*/
Debugger.prototype.doPrint = function(sCmd)
{
this.parseExpression(sCmd, true);
};
/**
* doProcStep(sCmd)
*
@ -5890,6 +5901,9 @@ if (DEBUGGER) {
this.println(sPrompt + sCmd);
}
var ch = sCmd.charAt(0);
if (ch == '"' || ch == "'") return true;
sCmd = sCmd.toLowerCase();
/*
@ -6003,7 +6017,7 @@ if (DEBUGGER) {
break;
case "?":
if (asArgs[1]) {
this.parseExpression(asArgs[1], true);
this.doPrint(asArgs[1]);
break;
}
this.doHelp();