Skip to content

Commit 2e14689

Browse files
Added example.
1 parent 9442943 commit 2e14689

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

examples/contrib_petscii_maze.bas

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,11 @@ PROCEDURE example ON C128, C64, C64REU, VIC20
3939
t = TEXTADDRESS
4040
DO
4141
a# = RANDOM BYTE AND 1
42-
IF a#=#0 THEN : POKE t, slash1# : ELSE : POKE t, slash2# : ENDIF
42+
IF a#=#0 THEN
43+
POKE t, slash1#
44+
ELSE
45+
POKE t, slash2#
46+
ENDIF
4347
INC t
4448
EXIT IF t = endAddress
4549
LOOP

0 commit comments

Comments
 (0)