Supoprt for tape images in the Absolute Loader format has been moved to the RAM component, so that those images can be preloaded into RAM in the same way that raw bootstrap images can; the RAM component now provides Absolute Loader image parsing as a service to other components that need it (specifically, the PC11 tape reader)

This commit is contained in:
Jeff Parsons 2016-10-19 11:10:38 -07:00 committed by Jeff Parsons
commit 13a1dedbc7
21 changed files with 800 additions and 693 deletions

View file

@ -93,6 +93,7 @@ function DebuggerPDP11(parmsDbg)
/*
* Since this Debugger doesn't use replaceRegs(), we can use parentheses instead of braces.
*/
this.fInit = false;
this.fParens = true;
/*
@ -1217,6 +1218,7 @@ if (DEBUGGER) {
*/
DebuggerPDP11.prototype.init = function()
{
this.fInit = true;
this.println("Type ? for help with PDP11 Debugger commands");
this.updateStatus();
if (this.sInitCommands) {
@ -1367,6 +1369,8 @@ if (DEBUGGER) {
*/
DebuggerPDP11.prototype.updateStatus = function(fRegs)
{
if (!this.fInit) return;
if (fRegs === undefined) fRegs = true;
this.dbgAddrNextCode = this.newAddr(this.cpu.getPC());