diff --git a/tfv/Makefile b/tfv/Makefile index 1e794aaa..3f3fe3a5 100644 --- a/tfv/Makefile +++ b/tfv/Makefile @@ -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 diff --git a/tfv/tfv.s b/tfv/tfv.s index 71b327a2..5c18ea9f 100644 --- a/tfv/tfv.s +++ b/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 diff --git a/tfv/tfv_info.s b/tfv/tfv_info.s new file mode 100644 index 00000000..72a839d3 --- /dev/null +++ b/tfv/tfv_info.s @@ -0,0 +1,3 @@ + +game_over: + rts diff --git a/tfv/tfv_worldmap.s b/tfv/tfv_worldmap.s new file mode 100644 index 00000000..eccd972a --- /dev/null +++ b/tfv/tfv_worldmap.s @@ -0,0 +1,6 @@ + +; + +world_map: + rts +