lovebyte: more work on submissions

This commit is contained in:
Vince Weaver 2024-02-06 23:03:20 -05:00
parent dad1cb0da6
commit e4b2215288
13 changed files with 54 additions and 17 deletions

View File

@ -16,15 +16,14 @@ dsr_wires.dsk: HELLO DSR_WIRES
submit: dsr_wires.zip
dsr_wires.zip: DSR_WIRES dsr_wires file_id.diz dsr_wires.dsk
dsr_wires.zip: DSR_WIRES dsr_wires.s file_id.diz dsr_wires.dsk
mkdir -p lovebyte2024_wires
cp DSR_WIRES ./lovebyte2024_wires
cp dsr_wires ./lovebyte2024_wires
cp dsr_wires.s ./lovebyte2024_wires
cp file_id.diz ./lovebyte2024_wires
cp dsr_wires.dsk ./lovebyte2024_wires
cp monitor.txt ./lovebyte2024_wires
cp wires_screen.png ./lovebyte2024_wires
cp wires_720p.mp4 ./lovebyte2024_wires
cp dsr_wires_screen.png ./lovebyte2024_wires
cp dsr_wires_720p.mp4 ./lovebyte2024_wires
zip -r dsr_wires.zip lovebyte2024_wires
####

View File

@ -22,7 +22,8 @@ HELLO: hello.bas
PLASMAG_TINY: plasmag_tiny.o
ld65 -o PLASMAG_TINY plasmag_tiny.o -C $(LINKERSCRIPTS)/apple2_4000.inc
plasmag_tiny.o: plasmag_tiny.s gr_gbascalc.s make_tables.s
plasmag_tiny.o: plasmag_tiny.s gr_gbascalc.s make_tables.s \
graphics/dsr_big.gr.zx02
ca65 -o plasmag_tiny.o plasmag_tiny.s -l plasmag_tiny.lst
###

View File

@ -0,0 +1,20 @@
include ../../../../Makefile.inc
ZX02 = ~/research/6502_compression/zx02.git/build/zx02
PNG2GR = ../../../../utils/gr-utils/png2gr
all: dsr_big.gr.zx02
####
dsr_big.gr: dsr_big.png
$(PNG2GR) dsr_big.png dsr_big.gr
dsr_big.gr.zx02: dsr_big.gr
$(ZX02) dsr_big.gr dsr_big.gr.zx02
####
clean:
rm -f *~

Binary file not shown.

After

Width:  |  Height:  |  Size: 680 B

View File

@ -206,5 +206,11 @@ lores_colors_lookup:
.include "interrupt_handler.s"
.include "mockingboard_constants.s"
.include "zx02_optim.s"
; graphics
dsr_big:
.incbin "graphics/dsr_big.gr.zx02"
; music
.include "mA2E_2.s"

View File

@ -1,5 +1,13 @@
; zero page
; zx02
offset = $00
ZX0_src = $02
ZX0_dst = $04
bitr = $06
pntr = $07
; pre-defined applesoft vars
CH = $24

View File

@ -1,7 +0,0 @@
5 HOME
10 PRINT " SPIRAL_32"
20 PRINT CHR$(4)"CATALOG"
25 PRINT:PRINT "PRESS ANY KEY TO 'BRUN SPIRAL_32'"
30 GET A$
35 PRINT
40 PRINT CHR$(4)"BRUN SPIRAL_32"

View File

@ -1,4 +0,0 @@
CALL -151
E8: 20 D8 F3 2C 30 C0 A8 A2 8C A9 60 20 11 F4 A2 DF
F8: A0 E2 E6 FE A9 01 29 7F 85 E7 20 5D F6 F0 E4
E8G

View File

@ -0,0 +1,10 @@
5 HOME
10 PRINT " -= SPIRALING SHAPE - 32 BYTES =-"
12 PRINT " ----------------------------"
13 PRINT " BY: DEATER/DSR"
14 PRINT " LOVEBYTE 2024"
20 PRINT CHR$(4)"CATALOG"
25 PRINT:PRINT "PRESS ANY KEY TO 'BRUN SPIRAL_32'"
30 GET A$
35 PRINT
40 PRINT CHR$(4)"BRUN SPIRAL_32"

View File

@ -0,0 +1,4 @@
CALL -151
E9: 20 D8 F3 2C 30 C0 A8 A2 8C A9 60 20 11 F4 A2 DF
F9: A0 E2 E6 FE A9 01 29 7F 85 E7 20 5D F6 F0 E4
E9G