Added the DAKAG PDP-10 diagnostics, implemented PUSHJ and POPJ instructions, and improved the debugging of XCT sequences

This commit is contained in:
Jeff 2017-03-29 13:26:23 -07:00 committed by Jeff Parsons
commit c045e78395
9 changed files with 6252 additions and 252 deletions

View file

@ -3344,7 +3344,7 @@ class DebuggerPDP10 extends Debugger {
this.println(this.getRegDump(fMisc));
if (fInstruction) {
this.setAddr(this.dbgAddrCode, cpu.getPC());
this.setAddr(this.dbgAddrCode, cpu.getXC());
this.doUnassemble(this.toStrAddr(this.dbgAddrCode));
}
}
@ -3881,7 +3881,7 @@ class DebuggerPDP10 extends Debugger {
*/
doCommands(sCmds, fSave)
{
if (sCmds) {
if (sCmds != null) {
this.aCommands = this.parseCommand(sCmds, fSave);
}
var sCmd;