You. Forth. Simplicity.

git repository
download
prior releases
documentation wiki
issue tracker
mailing list and forum
irc channel and logs
try it


This wiki remains, like the original forum, mainly for historical value. There is a new wiki which, while having less content, is more secure and oriented towards modern Retro implementations.

reload node | edit | recent changes | front page

Extensions to the editor

Since 8.0, RetroForth has had a built-in block editor. This is a pretty simple application. It's line oriented, which can make editing a pain. In addition, it has a very limited featureset.

This page is intended as a place to share new words that you've written for use with the RetroEditor.

Copy block
: cb ( sd- ) block swap block swap 512 move ;

Copy line to buffer
: cl ( l- ) (line) 64 >pad 2drop ;

Move line to buffer
: ml ( l- ) dup cl d ;

Yank line from buffer
: yl ( l- ) (line) pad swap 64 move ;


Contents of this page are PUBLIC DOMAIN.