From 4f00d92518d21b156caa64c8faaeb4be1729e8a0 Mon Sep 17 00:00:00 2001 From: Vince Weaver Date: Tue, 12 Sep 2017 21:56:11 -0400 Subject: [PATCH] tfv: add info and worldmap --- tfv/Makefile | 4 ++-- tfv/tfv.s | 13 +++++++++++++ tfv/tfv_info.s | 3 +++ tfv/tfv_worldmap.s | 6 ++++++ 4 files changed, 24 insertions(+), 2 deletions(-) create mode 100644 tfv/tfv_info.s create mode 100644 tfv/tfv_worldmap.s 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 +