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 + +