mirror of
https://github.com/a2geek/afscanner.git
synced 2024-12-28 08:30:45 +00:00
Switching over to a ProDOS system file; added template.po to contain PRODOS image.
This commit is contained in:
parent
786966ce04
commit
c5b42cf141
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,2 +1,5 @@
|
||||
_FileInformation.txt
|
||||
afscanner_Output.txt
|
||||
afscanner
|
||||
dev.po
|
||||
afscanner.zip
|
||||
|
17
Makefile
17
Makefile
@ -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)
|
||||
|
@ -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
BIN
template.po
Executable file
Binary file not shown.
Loading…
Reference in New Issue
Block a user