More robust handling of PDP-10 memory errors (so that when a file is assembled and loaded into non-existent memory, an error is generated); bumped the PDP-10 test machine to 32K words

This commit is contained in:
Jeff 2017-03-30 09:57:53 -07:00 committed by Jeff Parsons
commit ab41fdef3c
7 changed files with 73 additions and 52 deletions

View file

@ -707,7 +707,7 @@ class BusPDP10 extends Component {
if (DEBUGGER && this.dbg && this.dbg.messageEnabled(MessagesPDP10.FAULT)) {
this.dbg.printMessage("memory fault on " + this.dbg.toStrBase(addr), true, true);
}
this.cpu.stopCPU();
this.cpu.haltCPU();
}
}