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:
Jeff Parsons 2017-02-04 12:22:50 -08:00 committed by Jeff Parsons
commit 4be8640af8
8 changed files with 250 additions and 54 deletions

View file

@ -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();
}
}