tfv: add info and worldmap

This commit is contained in:
Vince Weaver 2017-09-12 21:56:11 -04:00
parent d71a601f4f
commit 4f00d92518
4 changed files with 24 additions and 2 deletions

View File

@ -55,8 +55,8 @@ TFV: tfv.o
ld65 -o TFV tfv.o -C ./apple2_1000.inc
tfv.o: tfv.s \
tfv_flying.s tfv_multiply.s tfv_opener.s tfv_title.s \
tfv_textentry.s tfv_utils.s \
tfv_flying.s tfv_info.s tfv_multiply.s tfv_opener.s tfv_title.s \
tfv_textentry.s tfv_utils.s tfv_worldmap.s \
tfv_backgrounds.inc tfv_sprites.inc tfv_zp.inc
ca65 -o tfv.o tfv.s -l tfv.lst

View File

@ -43,6 +43,17 @@
jsr flying_start
;=====================
; World Map
;=====================
jsr world_map
;=====================
; Game Over
;=====================
jsr game_over
;=====================
; All finished
@ -71,7 +82,9 @@ exit:
.include "tfv_utils.s"
.include "tfv_title.s"
.include "tfv_textentry.s"
.include "tfv_info.s"
.include "tfv_flying.s"
.include "tfv_worldmap.s"
;===============================================
; Variables

3
tfv/tfv_info.s Normal file
View File

@ -0,0 +1,3 @@
game_over:
rts

6
tfv/tfv_worldmap.s Normal file
View File

@ -0,0 +1,6 @@
;
world_map:
rts