Fixed incorrect RL11 addresses

This commit is contained in:
Jeff 2016-11-05 12:45:54 -07:00 committed by Jeff Parsons
commit 71546f1ed5
16 changed files with 24 additions and 24 deletions

View file

@ -9,16 +9,16 @@ redirect_from:
PDP-11 Boot Monitor
-------------------
[PDPJSMON.mac](PDPJSMON.mac) is a custom boot monitor/loader based on [boot.mac](http://skn.noip.me/pdp11/boot.mac) written by
[BOOTMON.mac](BOOTMON.mac) is a custom boot monitor/loader based on [boot.mac](http://skn.noip.me/pdp11/boot.mac) written by
[Paul Nankervis](mailto:paulnank@hotmail.com). It is used with all our PDP-11 test machines.
[PDPJSMON.mac](PDPJSMON.mac) was cross-assembled with [MACRO11](https://github.com/shattered/macro11) to produce
[PDPJSMON.txt](PDPJSMON.txt), which was then processed by [FileDump](/modules/filedump/) to produce
[PDPJSMON.json](PDPJSMON.json).
[BOOTMON.mac](BOOTMON.mac) was cross-assembled with [MACRO11](https://github.com/shattered/macro11) to produce
[BOOTMON.txt](BOOTMON.txt), which was then processed by [FileDump](/modules/filedump/) to produce
[BOOTMON.json](BOOTMON.json).
To see the Boot Monitor in action, try the [PDP-11/70 Boot Monitor (with Debugger)](/devices/pdp11/machine/1170/monitor/debugger/).
The **PDPJSMON.mac** source code is shown below.
The **BOOTMON.mac** source code is shown below.
; BOOT MONITOR
;

View file

@ -2,10 +2,10 @@
# Don't have macro11? Make yourself a copy from https://github.com/shattered/macro11
#
all: PDPJSMON.json
all: BOOTMON.json
PDPJSMON.txt: PDPJSMON.mac
macro11 PDPJSMON.mac -l PDPJSMON.txt
BOOTMON.txt: BOOTMON.mac
macro11 BOOTMON.mac -l BOOTMON.txt
PDPJSMON.json: PDPJSMON.txt
node ../../../../modules/filedump/bin/filedump --file=PDPJSMON.txt --format=octal --output=PDPJSMON.json --overwrite
BOOTMON.json: BOOTMON.txt
node ../../../../modules/filedump/bin/filedump --file=BOOTMON.txt --format=octal --output=BOOTMON.json --overwrite