Forth Hints & Tips: Kaleidoscope

Discussion about ZX80 / ZX81 Software
User avatar
kmurta
Posts: 305
Joined: Tue Sep 01, 2009 5:04 am
Location: Belo Horizonte - BR
Contact:

Forth Hints & Tips: Truchet Quarter-circles tiles

Post by kmurta »

Forth variant: TF79 (Requires the HGR extension)

Reference: https://en.wikipedia.org/wiki/Truchet_t ... er-circles

truchet.png
click to open
click to open

Note how screen 7 was used to load the program, since screens 1 to 6 are occupied by the high-resolution screen.
1 x ZX81, 2 x TK85 , 1 TK82C, 1 TK95, 1 x Alphacom 32 printer, 1 x ZXpand
ZeXtender board, Joy81 - Programmable Joystick Controller, Turbo Sound 81
http://zx81.eu5.org
https://toddysoftware.itch.io/
Moggy
Posts: 3267
Joined: Wed Jun 18, 2008 2:00 pm

Re: Forth Hints & Tips: Kaleidoscope

Post by Moggy »

Hmmm this looks very familiar Kelly! :lol:
User avatar
kmurta
Posts: 305
Joined: Tue Sep 01, 2009 5:04 am
Location: Belo Horizonte - BR
Contact:

Forth Hints & Tips: C64 one line labyrinth

Post by kmurta »

Forth variant: TF79 (Requires UDG or HGR extension)

You probably know this famous one-line BASIC program from the Commodore 64:

Code: Select all

10 PRINT CHR$(205.5+RND(1)); : GOTO 10
Here my version for the TF79:

Code: Select all

: LAB CR BEGIN 47 45 2 RND * + EMIT AGAIN ;
As it uses special characters, it must be run with UDG mode activated or in high-resolution graphics mode (HTERM).

click to open video
click to open video
1 x ZX81, 2 x TK85 , 1 TK82C, 1 TK95, 1 x Alphacom 32 printer, 1 x ZXpand
ZeXtender board, Joy81 - Programmable Joystick Controller, Turbo Sound 81
http://zx81.eu5.org
https://toddysoftware.itch.io/
Moggy
Posts: 3267
Joined: Wed Jun 18, 2008 2:00 pm

Re: Forth Hints & Tips: Kaleidoscope

Post by Moggy »

Very nice. :D
Post Reply