Changed the RESET button to *not* autoStart a machine when a Debugger is present, so that the Debugger can "cleanly" load bootstrap sequences and boot without side-effects (eg, unexpected interrupts)
This commit is contained in:
parent
c9d8413a1d
commit
4be8640af8
8 changed files with 250 additions and 54 deletions
|
|
@ -1410,7 +1410,7 @@ class ComputerPDP11 extends Component {
|
|||
this.fReload = false;
|
||||
} else {
|
||||
this.reset();
|
||||
if (this.cpu) this.cpu.autoStart();
|
||||
if (this.cpu && !this.dbg) this.cpu.autoStart();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue