<< Home | About Forth | About TurboForth | Download | Language Reference | Resources | Tutorials | YouTube >>
In Graphics Words in TurboForth Kernal
Logically defines a rectangular panel starting at y, x extending to ylength and xlength to be scrolled by SCROLL.
SCROLL
: DELAY ( n -- ) FOR NEXT ;
: TEST ( -- ) WORDS 10 10 20 20 PANEL 20 0 DO 2 SCROLL 1000 DELAY LOOP ;
TEST
none