<< Home | About Forth | About TurboForth | Download | Language Reference | Resources | Tutorials | YouTube >>


Words in category Miscellaneous in glossary TurboForth Kernal

Search:
The following words are listed in this category (9 words found): Word Types: S = Standard, I = Immediate , IC = Immediate-compiling.
Word Name Word Type Data Stack Signature Return Stack Signature Description Availability
V1.0 V1.1 V1.2
BL S -- 32 -- Pushes the value 32, which represents a space character, or a “Blank”. Commonly used in conjunction with WORD to get a word delimited by a blank.
BYE S -- -- Immediately resets the computer back the master title screen. Any un-flushed files are not flushed. Any open files are not closed.
COLD S -- -- Immediately reboots TurboForth. Any un-flushed files are not flushed prior to reset. Any open files are not closed.
DATA IC -- address count -- Defines a list of numeric data. At runtime, the address of the data, and the number of items in the data list are pushed to the stack.
DECIMAL S -- -- Sets the number base to decimal by writing 10 (decimal) to BASE.
EDIT S block# -- -- Invokes the built-in editor, loading disk block block# into the editor.
EXIT S -- -- Exits a word immediately, returning control to the calling word.
HEX S -- -- Sets the number base to hexadecimal to by writing 16 (decimal) to BASE.
QUIT S -- -- Clears the return stack, sets interpret state and inokes the interpreter.

<< Home | About Forth | About TurboForth | Download | Language Reference | Resources | Tutorials | YouTube >>