Handle double-RED abort conditions by stopping the CPU and reporting a PANIC

This commit is contained in:
Jeff Parsons 2016-12-01 20:07:33 -08:00 • committed by Jeff Parsons
commit 02b1b8a34a
12 changed files with 180 additions and 174 deletions

View file

@ -713,10 +713,10 @@ PC11.prototype.parseTape = function(sTapeName, sTapePath, nTapeTarget, aBytes, a
this.sTapePath = "";
this.sTapeSource = PC11.SOURCE.NONE;
this.nTapeTarget = PC11.TARGET.NONE;
this.notice("No load address available for tape: " + sTapeName);
this.notice('No load address available for tape "' + sTapeName + '"');
return;
}
this.status("tape loaded: " + sTapeName);
this.status('Loaded tape "' + sTapeName + '"');
return;
}
this.iTapeData = 0;