Start the Debugger with reasonable default addresses

This commit is contained in:
Jeff 2016-10-04 14:06:51 -07:00 committed by Jeff Parsons
commit 489a28923c

View file

@ -102,9 +102,9 @@ function DebuggerPDP11(parmsDbg)
* For TEMPORARY breakpoint addresses, we set fTemporary to true, so that they can be automatically * For TEMPORARY breakpoint addresses, we set fTemporary to true, so that they can be automatically
* cleared when they're hit. * cleared when they're hit.
*/ */
this.dbgAddrNextCode = this.newAddr(); this.dbgAddrNextCode = this.newAddr(0);
this.dbgAddrNextData = this.newAddr(); this.dbgAddrNextData = this.newAddr(0);
this.dbgAddrAssemble = this.newAddr(); this.dbgAddrAssemble = this.newAddr(0);
/* /*
* aSymbolTable is an array of SymbolTable objects, one per ROM or other chunk of address space, * aSymbolTable is an array of SymbolTable objects, one per ROM or other chunk of address space,