mirror of
https://git.sr.ht/~crc_/retroforth
synced 2024-11-16 19:48:56 +01:00
continue work to flesh out words.tsv
FossilOrigin-Name: 7bf1c2dc52756a780cbc68c52d0d85ad30b42fc97421dd5d4987b0438bc78f34
This commit is contained in:
parent
e2dd1e0d8f
commit
a455c3510f
1 changed files with 5 additions and 5 deletions
|
@ -12,14 +12,14 @@
|
|||
?dup n-nn || n-n - - Duplicate top value on stack if not zero. If zero, do nothing. class:word {n/a} {n/a} global all
|
||||
Compiler -a - - Variable. Holds the compiler state. If TRUE, the compiler is active. If FALSE, it is not. class:data {n/a} {n/a} global all
|
||||
Dictionary -a - - Variable. Holds a pointer to the most recent dictionary header. class:data {n/a} {n/a} global all
|
||||
EOM -n - - Constant. Returns the last addressable memory address. {n/a} {n/a} {n/a} global all
|
||||
FALSE -n - - Constant. Returns `0`, the value used to indicate a FALSE result. {n/a} {n/a} {n/a} global all
|
||||
EOM -n - - Constant. Returns the last addressable memory address. class:word {n/a} {n/a} global all
|
||||
FALSE -n - - Returns `0`, the value used to indicate a FALSE result. class:word {n/a} {n/a} global all
|
||||
FREE -n - - Returns the number of cells available to your application. This is the amount of memory, less the already consumed portion and buffers mapped for RETRO's internal use. {n/a} {n/a} {n/a} global all
|
||||
Heap -a - - Variable. Holds the address of the next available cell. class:data {n/a} {n/a} global all
|
||||
RewriteUnderscores -a - - Variable. When set to `TRUE`, RETRO will replace underscores in strings with spaces. When `FALSE`, RETRO does not. class:data {n/a} {n/a} global all
|
||||
STRINGS -a - - Return the address of the start of the temporary string pool. {n/a} {n/a} {n/a} global all
|
||||
STRINGS -a - - Return the address of the start of the temporary string pool. class:word {n/a} {n/a} global all
|
||||
ScopeList -a - - Variable. This holds some information used by `{{` and `}}`. class:data {n/a} {n/a} global all
|
||||
TRUE -n - - Constant. Returns `-1`, the value used to indicate a TRUE result. {n/a} {n/a} {n/a} global all
|
||||
TRUE -n - - Returns `-1`, the value used to indicate a TRUE result. class:word {n/a} {n/a} global all
|
||||
TempStringMax -a - - Variable. Holds the maximum length of a temporary string. class:data {n/a} {n/a} global all
|
||||
TempStrings -a - - Variable. Holds the number of temporary strings. class:data {n/a} {n/a} global all
|
||||
Version -a - - Variable. This stores the version number. class:data {n/a} {n/a} global all
|
||||
|
@ -28,7 +28,7 @@ Version -a - - Variable. This stores the version number. class:data {n/a} {n/a
|
|||
again - - - Close an unconditional loop. Branches back to the prior `repeat`. class:macro {n/a} {n/a} global all
|
||||
allot n- - - Allocate the specified number of cells from the `Heap`. class:word {n/a} {n/a} global all
|
||||
and nm-o - - Perform a bitwise AND operation between the two provided values. {n/a} {n/a} {n/a} global all
|
||||
as{ -f - - Begin an assembly section. {n/a} {n/a} {n/a} global all
|
||||
as{ -f - - Begin an assembly section. class:macro {n/a} {n/a} global all
|
||||
bi xqq-? - - Execute q1 against x, then execute q2 against a copy of x. class:word {n/a} {n/a} global all
|
||||
bi* xyqq-? - - Execute q1 against x and q2 against y. class:word {n/a} {n/a} global all
|
||||
bi@ xyq-? - - Execute q against x, then execute q against y. class:word {n/a} {n/a} global all
|
||||
|
|
|
Loading…
Reference in a new issue