RANDOM MAZE GENERATOR FOR C64 Use one of the following to create a random maze generator on a Commodore 64. Both of these methods are by "The 8-bit Guy" on YouTube. Lower-case is being used because most people are probably going to use the VICE emulator, which translates copied/pasted uppercase letters to whatever you would see if using SHIFT+[letter] on a real C64. "Method 01" works instantly but after "Method 02" cycles through some stuff, it is extremely fast. METHOD 01 ========= for a=1 to 2 step 0:print chr$(205.5+rnd(1));:next a METHOD 02 ========= Copy and paste the following into VICE (x64). If you are using a real Commodore 64, replace "M" in line 60 with "\". 10 dim m$(256):poke 54290,128:poke 54286,255:r=54299 20 for b=0 to 255 30 y=128:print"s"b" / 255" 40 for c=0 to 7 50 if (y and b)=0 then m$(b)=m$(b)+"/":goto 70 60 m$(b)=m$(b)+"M" 70 y=y/2:next c,b 80 printm$(peek(r))m$(peek(r))m$(peek(r))m$(peek(r))m$(peek(r));:goto 80 run