retroforth/book/Programming-Techniques-Return-Stack
crc aa24468dc4 work on the book
FossilOrigin-Name: d894d78b9b3b6b93df3bfe4f6976e6a446a71c4e1df92af907defecfaacdd1c0
2019-03-18 14:52:49 +00:00

7 lines
219 B
Text

# The Return Stack
RETRO has two stacks. The primary one is used to pass data
beween words. The second one primarily holds return addresses.
Each time a word is called, the next address is pushed to
the return stack.