From 489a28923cf643eb3ef29e2bec98c956408a3c7b Mon Sep 17 00:00:00 2001 From: Jeff Date: Tue, 4 Oct 2016 14:06:51 -0700 Subject: [PATCH] Start the Debugger with reasonable default addresses --- modules/pdp11/lib/debugger.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/pdp11/lib/debugger.js b/modules/pdp11/lib/debugger.js index f10ea3082..1dfaea679 100644 --- a/modules/pdp11/lib/debugger.js +++ b/modules/pdp11/lib/debugger.js @@ -102,9 +102,9 @@ function DebuggerPDP11(parmsDbg) * For TEMPORARY breakpoint addresses, we set fTemporary to true, so that they can be automatically * cleared when they're hit. */ - this.dbgAddrNextCode = this.newAddr(); - this.dbgAddrNextData = this.newAddr(); - this.dbgAddrAssemble = this.newAddr(); + this.dbgAddrNextCode = this.newAddr(0); + this.dbgAddrNextData = this.newAddr(0); + this.dbgAddrAssemble = this.newAddr(0); /* * aSymbolTable is an array of SymbolTable objects, one per ROM or other chunk of address space,