continue work to flesh out words.tsv

FossilOrigin-Name: 7bf1c2dc52756a780cbc68c52d0d85ad30b42fc97421dd5d4987b0438bc78f34
This commit is contained in:
crc 2017-11-10 20:02:03 +00:00
parent e2dd1e0d8f
commit a455c3510f

View file

@ -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

1 * nn-n - - Multiply `n1` by `n2` and return the result. class:primitive {n/a} {n/a} global all
12 ?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
13 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
14 Dictionary -a - - Variable. Holds a pointer to the most recent dictionary header. class:data {n/a} {n/a} global all
15 EOM -n - - Constant. Returns the last addressable memory address. {n/a} class:word {n/a} {n/a} global all
16 FALSE -n - - Constant. Returns `0`, the value used to indicate a FALSE result. Returns `0`, the value used to indicate a FALSE result. {n/a} class:word {n/a} {n/a} global all
17 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
18 Heap -a - - Variable. Holds the address of the next available cell. class:data {n/a} {n/a} global all
19 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
20 STRINGS -a - - Return the address of the start of the temporary string pool. {n/a} class:word {n/a} {n/a} global all
21 ScopeList -a - - Variable. This holds some information used by `{{` and `}}`. class:data {n/a} {n/a} global all
22 TRUE -n - - Constant. Returns `-1`, the value used to indicate a TRUE result. Returns `-1`, the value used to indicate a TRUE result. {n/a} class:word {n/a} {n/a} global all
23 TempStringMax -a - - Variable. Holds the maximum length of a temporary string. class:data {n/a} {n/a} global all
24 TempStrings -a - - Variable. Holds the number of temporary strings. class:data {n/a} {n/a} global all
25 Version -a - - Variable. This stores the version number. class:data {n/a} {n/a} global all
28 again - - - Close an unconditional loop. Branches back to the prior `repeat`. class:macro {n/a} {n/a} global all
29 allot n- - - Allocate the specified number of cells from the `Heap`. class:word {n/a} {n/a} global all
30 and nm-o - - Perform a bitwise AND operation between the two provided values. {n/a} {n/a} {n/a} global all
31 as{ -f - - Begin an assembly section. {n/a} class:macro {n/a} {n/a} global all
32 bi xqq-? - - Execute q1 against x, then execute q2 against a copy of x. class:word {n/a} {n/a} global all
33 bi* xyqq-? - - Execute q1 against x and q2 against y. class:word {n/a} {n/a} global all
34 bi@ xyq-? - - Execute q against x, then execute q against y. class:word {n/a} {n/a} global all