Improved PDP-11 save/restore support (added to Device, Panel, RK11, and Serial)
This commit is contained in:
parent
6f83ee8beb
commit
d182c7eced
15 changed files with 850 additions and 635 deletions
|
|
@ -2752,7 +2752,9 @@ class DebuggerPDP11 extends Debugger {
|
|||
|
||||
if (sParm == 'n') {
|
||||
this.nBreakInstructions = this.parseValue(sAddr);
|
||||
this.println("break after " + this.nBreakInstructions + " instruction(s)");
|
||||
if (this.nBreakInstructions != null) {
|
||||
this.println("break after " + this.nBreakInstructions + " instruction(s)");
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue