Minor PCx86 Debugger-related improvements

This commit is contained in:
Jeff Parsons 2017-08-02 19:02:23 -07:00 committed by Jeff Parsons
commit d0052eb7cd
13 changed files with 1081 additions and 1032 deletions

View file

@ -1213,15 +1213,16 @@ class CPU extends Component {
* For use by any component that wants to start the CPU.
*
* @param {boolean} [fUpdateFocus]
* @param {boolean} [fQuiet]
* @return {boolean}
*/
startCPU(fUpdateFocus)
startCPU(fUpdateFocus, fQuiet)
{
if (this.isError()) {
return false;
}
if (this.flags.running) {
this.println(this.toString() + " busy");
if (!fQuiet) this.println(this.toString() + " busy");
return false;
}
/*