kfest: set up build and disk image

This commit is contained in:
Vince Weaver 2018-07-18 09:40:37 -04:00
parent 98340410a3
commit 47eba5f74f
3 changed files with 22 additions and 5 deletions

18
kfest2018/Makefile Normal file
View File

@ -0,0 +1,18 @@
include ../Makefile.inc
DOS33 = ../dos33fs-utils/dos33
TOKENIZE = ../asoft_basic-utils/tokenize_asoft
all: kfest18.dsk
kfest18.dsk: RASTER
$(DOS33) -y kfest18.dsk BSAVE -a 0x1000 RASTER
raster.o: raster.s
ca65 -o raster.o raster.s -l raster.lst
RASTER: raster.o
ld65 -o RASTER raster.o -C ../linker_scripts/apple2_1000.inc
clean:
rm -f *~ *.o *.lst RASTER

BIN
kfest2018/kfest18.dsk Normal file

Binary file not shown.

View File

@ -1,14 +1,13 @@
; Kansasfest HackFest Entry
TEXT EQU $FB36 ;; Set text mode
HOME EQU $FC58 ;; Clear the text screen
TEXT = $FB36 ;; Set text mode
HOME = $FC58 ;; Clear the text screen
;===================
; init screen
jsr TEXT
jsr HOME
jsr TEXT
jsr HOME