mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-12-24 13:32:23 +00:00
tfv: add info and worldmap
This commit is contained in:
parent
d71a601f4f
commit
4f00d92518
@ -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
|
||||
|
||||
|
13
tfv/tfv.s
13
tfv/tfv.s
@ -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
3
tfv/tfv_info.s
Normal file
@ -0,0 +1,3 @@
|
||||
|
||||
game_over:
|
||||
rts
|
6
tfv/tfv_worldmap.s
Normal file
6
tfv/tfv_worldmap.s
Normal file
@ -0,0 +1,6 @@
|
||||
|
||||
;
|
||||
|
||||
world_map:
|
||||
rts
|
||||
|
Loading…
Reference in New Issue
Block a user