diff --git a/space_bars/Makefile b/space_bars/Makefile index 0af7e84f..0c304745 100644 --- a/space_bars/Makefile +++ b/space_bars/Makefile @@ -6,7 +6,8 @@ B2D = ../bmp2dhr/b2d all: space_bars.dsk -space_bars.dsk: SPACE_BARS +space_bars.dsk: SPACE_BARS HELLO + $(DOS33) -y space_bars.dsk SAVE A HELLO $(DOS33) -y space_bars.dsk BSAVE -a 0x4000 SPACE_BARS @@ -24,6 +25,11 @@ space_bars.o: space_bars.s instructions.s game.s \ #### +HELLO: hello.bas + ../asoft_basic-utils/tokenize_asoft < hello.bas > HELLO + +#### + spacebars_title.inc: ./images/spacebars_title_scaled.png $(PNG_TO_40x48D) asm ./images/spacebars_title_scaled.png spacebars_title > spacebars_title.inc diff --git a/space_bars/hello.bas b/space_bars/hello.bas new file mode 100644 index 00000000..0ff107f8 --- /dev/null +++ b/space_bars/hello.bas @@ -0,0 +1,2 @@ + 10 PRINT "RASTERBARS IN SPACE V0.6" + 100 PRINT CHR$ (4)"BRUN SPACE_BARS" diff --git a/space_bars/space_bars.dsk b/space_bars/space_bars.dsk index 94b43211..d0e29621 100644 Binary files a/space_bars/space_bars.dsk and b/space_bars/space_bars.dsk differ