Added the DAKAG PDP-10 diagnostics, implemented PUSHJ and POPJ instructions, and improved the debugging of XCT sequences
This commit is contained in:
parent
c380e2cad2
commit
c045e78395
9 changed files with 6252 additions and 252 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue