tfv: rename files to have tfv_ in front

makes it easire to keep track of things
This commit is contained in:
Vince Weaver 2017-08-23 13:09:52 -04:00
parent d4fa7a1337
commit 04ad8e1193
9 changed files with 20 additions and 14 deletions

View File

@ -6,7 +6,13 @@ PNG2RLE = ../gr-utils/png2rle
all: tfv.dsk
tfv.dsk: TFV ED HIGHWIND.ED FIGHTING.ED
$(PNG2RLE):
cd ../gr-utils && make
$(DOS33):
cd ../dos33fs-utils && make
tfv.dsk: $(DOS33) TFV ED HIGHWIND.ED FIGHTING.ED
$(DOS33) -y tfv.dsk BSAVE -a 0x1000 TFV
$(DOS33) -y tfv.dsk BSAVE -a 0x900 ED
$(DOS33) -y tfv.dsk BSAVE -a 0x2000 HIGHWIND.ED
@ -19,8 +25,8 @@ duet.o: duet.s
ca65 -o duet.o duet.s -l duet.lst
$(PNG2RLE):
cd ../gr-utils && make
backgrounds.inc: $(PNG2RLE) \
title.png map.png \
@ -48,7 +54,7 @@ backgrounds.inc: $(PNG2RLE) \
TFV: tfv.o
ld65 -o TFV tfv.o -C ./apple2_1000.inc
tfv.o: tfv.s flying.s opener.s title.s textentry.s utils.s backgrounds.inc zp.inc
tfv.o: tfv.s tfv_flying.s tfv_opener.s tfv_title.s tfv_textentry.s tfv_utils.s tfv_backgrounds.inc tfv_zp.inc
ca65 -o tfv.o tfv.s -l tfv.lst

View File

@ -1,4 +1,4 @@
.include "zp.inc"
.include "tfv_zp.inc"
;================================
; Clear screen and setup graphics
@ -79,19 +79,16 @@ exit:
; External modules
;===============================================
.include "opener.s"
.include "utils.s"
.include "title.s"
.include "textentry.s"
.include "flying.s"
.include "tfv_opener.s"
.include "tfv_utils.s"
.include "tfv_title.s"
.include "tfv_textentry.s"
.include "tfv_flying.s"
;===============================================
; Variables
;===============================================
vmwsw_string:
.asciiz "A VMW SOFTWARE PRODUCTION"
enter_name_string:
.asciiz "PLEASE ENTER A NAME:"
@ -114,4 +111,4 @@ tb1_sprite:
.byte $ff,$1f,$4f,$2f,$ff,$22,$20,$00
.byte $5f,$5f,$5f,$5f,$ff,$f2,$f2,$f2
.include "backgrounds.inc"
.include "tfv_backgrounds.inc"

View File

@ -157,3 +157,6 @@ draw_logo:
rts
vmwsw_string:
.asciiz "A VMW SOFTWARE PRODUCTION"