More Video DEBUG support, and more disk images
This commit is contained in:
parent
d87ee35343
commit
a1e3c366eb
24 changed files with 153 additions and 6 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Reference in a new issue