Minor PCx86 Debugger-related improvements
This commit is contained in:
parent
aefe2b4b5b
commit
d0052eb7cd
13 changed files with 1081 additions and 1032 deletions
|
|
@ -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;
|
||||
}
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue