Hello folks :) It's been a while.
Here is my take on "10 PRINT"-style maze generators (11 bytes of machine code):
Source code is at:
ssg/mazecpc ยท GitHub (https://github.com/ssg/mazecpc)
EDIT: Zip I attached was broken, download here instead: https://github.com/ssg/mazecpc/releases/download/1/maze.zip (https://github.com/ssg/mazecpc/releases/download/1/maze.zip)
I guess it is the shortest demo on the CPC ! :)
Interesting effect.
This is pretty sweet, especially given the size of the code. Well done! :D
crazy! :)
An arithmetic view, with the same size and speed ;D
org &4000
char equ &cd
TXT_WR_CHAR equ &bb5d
run $
.loop:
ld a, r
rra
sbc a
add char
call TXT_WR_CHAR
jr loop
Very nice!
Interesting effect ;)
Is the maze effect hidden on the Firmware 3.15 using the |EE RSX ?