From e2900d6fd7254de53488bf0501a57d788c66a3d0 Mon Sep 17 00:00:00 2001 From: Vince Weaver Date: Wed, 29 Aug 2018 11:46:25 -0400 Subject: [PATCH] megademo: initial commit --- fancy_lores/Makefile | 1 + megademo/Makefile | 18 +++++++++++++----- megademo/megademo.s | 13 +++++++++++++ 3 files changed, 27 insertions(+), 5 deletions(-) create mode 100644 megademo/megademo.s diff --git a/fancy_lores/Makefile b/fancy_lores/Makefile index ea28c443..ae01874e 100644 --- a/fancy_lores/Makefile +++ b/fancy_lores/Makefile @@ -12,6 +12,7 @@ fancy_lores_viewer.dsk: DISP4096 DISP4048D $(DOS33) -y fancy_lores_viewer.dsk BSAVE -a 0x1000 DISP4048D # $(DOS33) -y fancy_lores_viewer.dsk BSAVE -a 0x2000 APPLE_ORIG.BIN # $(DOS33) -y fancy_lores_viewer.dsk BSAVE -a 0x2000 KATAHDIN_ORIG.BIN +# $(DOS33) -y fancy_lores_viewer.dsk BSAVE -a 0x2000 APPLE_HGR.BIN #### diff --git a/megademo/Makefile b/megademo/Makefile index c7bce137..498d3857 100644 --- a/megademo/Makefile +++ b/megademo/Makefile @@ -5,11 +5,20 @@ B2D = ../bmp2dhr/b2d all: megademo.dsk -megademo.dsk: C64C.BIN C64_UPDATE.BIN - $(DOS33) -y megademo.dsk BSAVE -a 0x2000 C64C.BIN +megademo.dsk: MEGADEMO + $(DOS33) -y megademo.dsk BSAVE -a 0x1000 MEGADEMO +# $(DOS33) -y megademo.dsk BSAVE -a 0x2000 C64C.BIN # $(DOS33) -y megademo.dsk BSAVE -a 0x2000 C64.BIN # $(DOS33) -y megademo.dsk BSAVE -a 0x2000 C64_BW.BIN - $(DOS33) -y megademo.dsk BSAVE -a 0x4000 C64_UPDATE.BIN +# $(DOS33) -y megademo.dsk BSAVE -a 0x4000 C64_UPDATE.BIN + +#### + +MEGADEMO: megademo.o + ld65 -o MEGADEMO megademo.o -C ../linker_scripts/apple2_1000.inc + +megademo.o: megademo.s + ca65 -o megademo.o megademo.s -l megademo.lst #### @@ -18,5 +27,4 @@ C64C.BIN: c64.bmp $(B2D) c64.bmp HGR clean: - rm -f *~ *.o *.lst *.inc C64C.BIN - + rm -f *~ *.o *.lst *.inc MEGADEMO diff --git a/megademo/megademo.s b/megademo/megademo.s new file mode 100644 index 00000000..e0681bb3 --- /dev/null +++ b/megademo/megademo.s @@ -0,0 +1,13 @@ +; Apple II Megademo + +; by deater (Vince Weaver) + + + + ;=================== + ; do nothing + ;=================== +do_nothing: + jmp do_nothing + +