diff --git a/xmas_2018/Makefile b/xmas_2018/Makefile index c59c57da..31fee9fd 100644 --- a/xmas_2018/Makefile +++ b/xmas_2018/Makefile @@ -7,7 +7,8 @@ PNG_TO_RLE = ../gr-utils/png2rle all: xmas2018.dsk -xmas2018.dsk: XMAS2018 wreath.img +xmas2018.dsk: HELLO XMAS2018 wreath.img + $(DOS33) -y xmas2018.dsk SAVE A HELLO $(DOS33) -y xmas2018.dsk BSAVE -a 0x4000 XMAS2018 $(DOS33) -y xmas2018.dsk BSAVE -a 0x2000 wreath.img WREATH.IMG @@ -26,6 +27,10 @@ xmas2018.o: xmas2018.s \ #### +HELLO: hello.bas + ../asoft_basic-utils/tokenize_asoft < hello.bas > HELLO + + #c64.img.lz4: c64.img # lz4 -f -16 c64.img # diff --git a/xmas_2018/hello.bas b/xmas_2018/hello.bas index 91addeae..2dbee815 100644 --- a/xmas_2018/hello.bas +++ b/xmas_2018/hello.bas @@ -1,10 +1,10 @@ - 5 PRINT "VMW PRODUCTIONS 2018 CHRISTMAS DEMO" - 10 PRINT - 10 PRINT "ONLY 22 YEARS SINCE THE LAST ONE" + 5 HOME + 10 PRINT " VMW PRODUCTIONS 2018 CHRISTMAS DEMO" 20 PRINT - 30 PRINT "* CODE: DEATER" - 40 PRINT "* DISK/LZ4: QKUMBA" - 50 PRINT "* MUSIC: F. MENDELSSOHN" - 60 PRINT "* PICTURES: " - 90 PRINT: X=PEEK(49237) + 30 PRINT " ONLY 22 YEARS SINCE THE LAST ONE" + 40 PRINT:PRINT + 50 PRINT "* CODE: DEATER" + 60 PRINT "* LZ4: QKUMBA" + 70 PRINT "* MUSIC: F. MENDELSSOHN" + 80 PRINT "* PICTURES: KITTELENDAN" 100 PRINT CHR$ (4)"BRUN XMAS2018" diff --git a/xmas_2018/notes b/xmas_2018/notes index 457a2862..a51dfd44 100644 --- a/xmas_2018/notes +++ b/xmas_2018/notes @@ -1,3 +1,15 @@ +flame locations: + cutoff at line 40 + + 2 wide= + 4 (28) + 19 (133) + 26 (182) + 1 wide= + 14 (98) + 31 (217) + + Advent wreath picture: https://en.wikipedia.org/wiki/File:Adventwreath.jpg Creative Commons Attribution-Share Alike 3.0 Unported diff --git a/xmas_2018/wreath.bmp b/xmas_2018/wreath.bmp index c898be84..c6a74f56 100644 Binary files a/xmas_2018/wreath.bmp and b/xmas_2018/wreath.bmp differ