Changed BOOTTEST to simply TEST
This commit is contained in:
parent
ed24094683
commit
e3b165431b
13 changed files with 16 additions and 16 deletions
|
|
@ -9,7 +9,7 @@ redirect_from:
|
|||
PDP-11 Boot Test
|
||||
----------------
|
||||
|
||||
[BOOTTEST.MAC](BOOTTEST.mac) is based on [BOOT.MAC](http://skn.noip.me/pdp11/boot.mac) written by [Paul Nankervis](mailto:paulnank@hotmail.com))
|
||||
[TEST.MAC](TEST.mac) is based on [BOOT.MAC](http://skn.noip.me/pdp11/boot.mac) written by [Paul Nankervis](mailto:paulnank@hotmail.com))
|
||||
|
||||
[BOOTTEST.MAC](BOOTTEST.mac) was cross-assembled with [MACRO11](https://github.com/shattered/macro11) to produce [BOOTTEST.LST](BOOTTEST.lst),
|
||||
which was then processed by [FileDump](/modules/filedump/) to produce [BOOTTEST.JSON](BOOTTEST.json).
|
||||
[TEST.MAC](TEST.mac) was cross-assembled with [MACRO11](https://github.com/shattered/macro11) to produce [TEST.LST](TEST.lst),
|
||||
which was then processed by [FileDump](/modules/filedump/) to produce [TEST.JSON](TEST.json).
|
||||
|
|
|
|||
|
|
@ -2,10 +2,10 @@
|
|||
# Don't have macro11? Make yourself a copy from https://github.com/shattered/macro11
|
||||
#
|
||||
|
||||
all: BOOTTEST.json
|
||||
all: TEST.json
|
||||
|
||||
BOOTTEST.lst: BOOTTEST.mac
|
||||
macro11 BOOTTEST.mac -l BOOTTEST.lst
|
||||
TEST.lst: TEST.mac
|
||||
macro11 TEST.mac -l TEST.lst
|
||||
|
||||
BOOTTEST.json: BOOTTEST.lst
|
||||
node ../../../../modules/filedump/bin/filedump --file=BOOTTEST.lst --format=octal --output=BOOTTEST.json --overwrite
|
||||
TEST.json: TEST.lst
|
||||
node ../../../../modules/filedump/bin/filedump --file=TEST.lst --format=octal --output=TEST.json --overwrite
|
||||
|
|
|
|||
Loading…
Reference in a new issue