Switching over to a ProDOS system file; added template.po to contain PRODOS image.

This commit is contained in:
Rob Greene 2016-01-17 22:36:21 -06:00
parent 786966ce04
commit c5b42cf141
4 changed files with 21 additions and 4 deletions

3
.gitignore vendored
View File

@ -1,2 +1,5 @@
_FileInformation.txt
afscanner_Output.txt
afscanner
dev.po
afscanner.zip

View File

@ -1,9 +1,20 @@
# External programs:
ASM = Merlin32.exe -V ~/Merlin32_v1.0/Merlin32_v1.0//Library/
AC = java -jar "C:\Users\Rob\From DOODLE4\Java Applications\AppleCommander releases\AppleCommander-1.3.5.14-ac.jar"
# Local stuff:
PGM = afscanner
SYS = afscannr.system
TYPE = SYS
ADDR = 0x2000
TMPL = template.po
DISK = dev.po
build:
$(ASM) afscanner.s
$(AC) -pro140 dev.po DEV
cat afscanner | $(AC) -p dev.po afscanner BIN 0x8000
$(ASM) $(PGM).s
cp $(TMPL) $(DISK)
cat $(PGM) | $(AC) -p $(DISK) $(SYS) $(TYPE) $(ADDR)
$(AC) -k $(DISK) $(SYS)
$(AC) -ll $(DISK)
zip $(PGM).zip $(DISK)

View File

@ -9,6 +9,9 @@
*
********************************
ORG $2000
TYP SYS
XC ; enable 65C02
* Constants:
@ -81,7 +84,7 @@ MAIN JSR $C300 ; Assuming 80 columns
JSR PRINT
DFB _CLS
DFB _INVERSE
ASC " Address Field Scanner 1.0 "
ASC " Address Field Scanner 2.0beta "
DFB _NORMAL
DFB 23,$8D ; repeat 8D 23x
DFB _INVERSE

BIN
template.po Executable file

Binary file not shown.