mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-08 13:38:06 +11:00
db1d6424b3
This brings us a bit closer to TYPE from Forth 2012. I don't think I'll add TYPE (sig "addr len") anytime soon because there is few use cases for it, but having "STYPE" instead of "(print)" feels cleaner.
286 lines
11 KiB
Plaintext
286 lines
11 KiB
Plaintext
# Dictionary
|
|
|
|
List of words defined in arch-specific boot code (for example,
|
|
B280 for Z80), Core words (B350) and Extra words (B150).
|
|
|
|
# Glossary
|
|
|
|
Stack notation: "<stack before> -- <stack after>". Rightmost is
|
|
top of stack (TOS). For example, in "a b -- c d", b is TOS
|
|
before, d is TOS after. "R:" means that the Return Stack is
|
|
modified.
|
|
|
|
Word references (wordref): When we say we have a "word
|
|
reference", it's a pointer to a word's *entry type field*. For
|
|
example, the address that "' DUP" puts on the stack is a
|
|
wordref, that is, a reference to the entry type field of the
|
|
word DUP. See impl.txt for details.
|
|
|
|
PF: Parameter field. The area following the entry type field of
|
|
a word. For example, "' H@ 1+" points to the PF of the word H@.
|
|
|
|
Words between "()" are "support words" that aren't really meant
|
|
to be used directly, but as part of another word.
|
|
|
|
"*I*" in description indicates an IMMEDIATE word.
|
|
|
|
# Symbols
|
|
|
|
Throughout words, different symbols are used in different
|
|
contexts, but we try to been consistent in their use. Here's
|
|
their definitions:
|
|
|
|
! - Store
|
|
@ - Fetch
|
|
$ - Initialize
|
|
^ - Arguments in their opposite order
|
|
< - Input
|
|
> - 1. Pointer in a buffer 2. Opposite of "<".
|
|
( - Lower boundary
|
|
) - Upper boundary
|
|
* - Word indirection (pointer to word)
|
|
? - Is it ...? (example: IMMED?)
|
|
|
|
# Entry management
|
|
|
|
'? x -- a f Find x it in dict. If found, f=1 and
|
|
a = wordref. If not found, f=0 and
|
|
a = string addr.
|
|
' x -- a Push addr of word x to a. If not found,
|
|
aborts.
|
|
['] x -- *I* Like "'", but spits the addr as a number
|
|
literal. If not found, aborts.
|
|
, n -- Write n in HERE and advance it.
|
|
ALLOT n -- Move HERE by n bytes
|
|
A, b -- Indirect C,
|
|
C, b -- Write byte b in HERE and advance it.
|
|
FIND w -- a f Like '?, but for w.
|
|
EMPTY -- Rewind HERE and CURRENT where they were at
|
|
system initialization.
|
|
FORGET x -- Rewind the dictionary (both CURRENT and HERE)
|
|
up to x's previous entry.
|
|
PREV a -- a Return a wordref's previous entry.
|
|
WORD( a -- a Get wordref's beginning addr.
|
|
|
|
# Defining words
|
|
|
|
: x ... ; -- Define a new word
|
|
:* x a -- Define a new alias
|
|
:** x a -- Define a new ialias
|
|
CREATE x -- Create cell named x. Doesn't allocate a PF.
|
|
[COMPILE] x -- *I* Compile word x and write it to HERE.
|
|
IMMEDIATE words are *not* executed.
|
|
COMPILE x -- *I* Meta compiles: write wordrefs that will
|
|
compile x when executed.
|
|
CONSTANT x n -- Creates cell x that when called pushes its
|
|
value.
|
|
DOES> -- See primer.txt
|
|
IMMED? a -- f Checks whether wordref at a is immediate.
|
|
IMMEDIATE -- Flag the latest defined word as immediate.
|
|
LITN n -- Write number n as a literal.
|
|
VARIABLE c -- Creates cell x with 2 bytes allocation.
|
|
|
|
# Flow
|
|
|
|
Note that flow words can only be used in definitions. In the
|
|
INTERPRET loop, they don't have the desired effect because each
|
|
word from the input stream is executed immediately. In this
|
|
context, branching doesn't work.
|
|
|
|
f IF A ELSE B THEN: if f is true, execute A, if false, execute
|
|
B. ELSE is optional.
|
|
[IF] .. [THEN]: Meta-IF. Works outside definitions. No [ELSE].
|
|
BEGIN .. f UNTIL: if f is false, branch to BEGIN.
|
|
BEGIN .. AGAIN: Always branch to BEGIN.
|
|
x y DO .. LOOP: LOOP increments y. if y != x, branch to DO.
|
|
|
|
x CASE y OF A ENDOF z OF B ENDOF C ENDCASE: If x == y, execute
|
|
A, if x == z, execute B. Otherwise, execute C. x is dropped
|
|
in case of an OF match, *but it is kept if it reaches C*. You
|
|
have to consume it to avoid PSP leak.
|
|
|
|
(br) -- Branches by the number specified in the 2
|
|
following bytes. Can be negative.
|
|
(?br) f -- Branch if f is false.
|
|
( -- *I* Comment. Ignore input until ")" is read.
|
|
[ -- *I* Begin interpretative mode. In a definition,
|
|
execute words instead of compiling them.
|
|
] -- End interpretative mode.
|
|
ABORT -- Resets PS and RS and returns to interpreter.
|
|
ABORT" x" -- *I* Compiles a ." followed by a ABORT.
|
|
ERR a -- Prints a and ABORT. Defined early and used by
|
|
drivers.
|
|
EXECUTE a -- Execute wordref at addr a
|
|
INTERPRET -- Main interpret loop.
|
|
LEAVE -- In a DO..LOOP, exit at the next LOOP call.
|
|
QUIT -- Return to interpreter prompt immediately.
|
|
|
|
# Parameter Stack
|
|
|
|
DROP a --
|
|
DUP a -- a a
|
|
?DUP DUP if a is nonzero
|
|
NIP a b -- b
|
|
OVER a b -- a b a
|
|
ROT a b c -- b c a
|
|
ROT> a b c -- c a b
|
|
SWAP a b -- b a
|
|
TUCK a b -- b a b
|
|
2DROP a a --
|
|
2DUP a b -- a b a b
|
|
2OVER a b c d -- a b c d a b
|
|
2SWAP a b c d -- c d a b
|
|
'S Returns current stack pointer, not counting the
|
|
push it's making right now.
|
|
S0 Returns address of PSP TOS. When PSP is empty,
|
|
'S == S0
|
|
PICK Pick nth item from stack. "0 PICK" = DUP,
|
|
"1 PICK" = OVER.
|
|
ROLL Rotate PSP over n items. "1 ROLL" = SWAP,
|
|
"2 ROLL" = ROT. 0 is noop.
|
|
|
|
# Return Stack
|
|
|
|
>R n -- R:n Pops PS and push to RS
|
|
2>R x y -- R:x y Equivalent to SWAP >R >R
|
|
R> R:n -- n Pops RS and push to PS
|
|
2R> R:x y -- x y Equivalent to R> R> SWAP
|
|
I -- n Copy RS TOS to PS
|
|
I' -- n Copy RS second item to PS
|
|
J -- n Copy RS third item to PS
|
|
|
|
# Memory
|
|
|
|
@ a -- n Set n to value at address a
|
|
! n a -- Store n in address a
|
|
? a -- Print value of addr a
|
|
+! n a -- Increase value of addr a by n
|
|
A@ a -- c Indirect C@
|
|
A! c a -- Indirect C!
|
|
C@ a -- c Set c to byte at address a
|
|
C@+ a -- a+1 c Fetch c from a and inc a.
|
|
C@- a -- a-1 c Fetch c from a and dec a.
|
|
C! c a -- Store byte c in address a
|
|
C!+ c a -- a+1 Store byte c in a and inc a.
|
|
C!- c a -- a-1 Store byte c in a and dec a.
|
|
*! a al -- Change alias al's addr to a.
|
|
**! a sw -- Change ialias sw's addr to a.
|
|
CURRENT -- a Set a to wordref of last added entry.
|
|
CURRENT* -- a A pointer to active CURRENT*. Useful
|
|
when we have multiple active dicts.
|
|
FILL a n b -- Fill n bytes at addr a with val b.
|
|
HERE -- a Push HERE's address
|
|
H@ -- a HERE @
|
|
MOVE a1 a2 u -- Copy u bytes from a1 to a2, starting
|
|
with a1, going up.
|
|
MOVE- a1 a2 u -- Copy u bytes from a1 to a2, starting
|
|
with a1+u, going down.
|
|
MOVE, a u -- Copy u bytes from a to HERE.
|
|
MOVEW src dst u -- Same as MOVE, but with words
|
|
|
|
Important note: MOVE* use A@ and A! instead of C@ and C! See
|
|
"Addressed devices" in usage.txt.
|
|
|
|
MOVEW notes: this word's purpose is to interface with word-
|
|
based systems. src and dst are addressed as *bytes* but u is a
|
|
*word* count. Every iteration increases src and dst by 2. This
|
|
shouldn't be used on regular memory, it will yield weird
|
|
results. Use it with A! ialias pointing to a word-based target.
|
|
|
|
# Arithmetic / Bits
|
|
|
|
+ a b -- c a + b -> c
|
|
- a b -- c a - b -> c
|
|
-^ a b -- c b - a -> c
|
|
* a b -- c a * b -> c
|
|
/ a b -- c a / b -> c
|
|
MOD a b -- c a % b -> c
|
|
/MOD a b -- r q r:remainder q:quotient
|
|
AND a b -- c a & b -> c
|
|
OR a b -- c a | b -> c
|
|
XOR a b -- c a ^ b -> c
|
|
LSHIFT a u -- c a << u -> c
|
|
RSHIFT a u -- c a >> u -> c
|
|
|
|
Shortcuts: 1+ 2+ 1- 2-
|
|
|
|
# Logic
|
|
|
|
= n1 n2 -- f Push true if n1 == n2
|
|
< n1 n2 -- f Push true if n1 < n2
|
|
> n1 n2 -- f Push true if n1 > n2
|
|
>< n l h -- f Push true if l < n < h
|
|
=><= n l h -- f Push true if l <= n <= h
|
|
CMP n1 n2 -- n Compare n1 and n2 and set n to -1, 0, or 1.
|
|
n=0: a1=a2. n=1: a1>a2. n=-1: a1<a2.
|
|
NOT f -- f Push the logical opposite of f
|
|
|
|
# Strings
|
|
|
|
Strings in Collapse OS begin with a one byte length, followed
|
|
by the contents of the string.
|
|
|
|
LIT" x" -- Read following characters and write to HERE
|
|
as a string literal.
|
|
S= a1 a2 -- f Returns whether string a1 == a2.
|
|
|
|
# I/O
|
|
|
|
(parse) a -- n Parses string at a as a number and push the
|
|
result in n as well as whether parsing was a
|
|
success in f (false = failure, true =
|
|
success)
|
|
STYPE a -- EMIT all chars of string at at addr a.
|
|
. n -- Print n in its decimal form
|
|
.x n -- Print n's LSB in hex form. Always 2
|
|
characters.
|
|
.X n -- Print n in hex form. Always 4 characters.
|
|
Numbers are never considered negative.
|
|
"-1 .X" --> ffff
|
|
," xxx" -- Write xxx to HERE
|
|
." xxx" -- *I* Compiles string literal xxx followed by a
|
|
call to STYPE.
|
|
C<? -- f Returns whether there's a char waiting in buf.
|
|
C< -- c Read one char from buffered input.
|
|
EMIT c -- Spit char c to output stream
|
|
IN> -- a Address of variable containing current pos in
|
|
input buffer.
|
|
KEY -- c Get char c from direct input
|
|
PC! c a -- Spit c to port a
|
|
PC@ a -- c Fetch c from port a
|
|
WORD -- a Read one word from buffered input and push its
|
|
addr. Always null terminated. If ASCII EOT is
|
|
encountered, a will point to it (it is cons-
|
|
idered a word).
|
|
|
|
There are also ascii const emitters:
|
|
BS CR LF SPC CRLF
|
|
|
|
NL is an indirect word (see SYSVARS in impl.txt) that aliases to
|
|
CRLF by default and that should generally be used when we want
|
|
to emit a newline.
|
|
|
|
# Disk
|
|
|
|
BLK> -- a Address of the current block variable.
|
|
BLK( -- a Beginning addr of blk buf.
|
|
BLK) -- a Ending addr of blk buf.
|
|
COPY s d -- Copy contents of s block to d block.
|
|
FLUSH -- Write current block to disk if dirty.
|
|
LIST n -- Prints the contents of the block n on screen
|
|
in the form of 16 lines of 64 columns.
|
|
LOAD n -- Interprets Forth code from block n
|
|
LOAD+ n -- Relative load. Loads active block + n.
|
|
LOADR n1 n2 -- Load block range between n1 and n2, inclusive.
|
|
LOADR+ n1 n2 -- Relative ranged load.
|
|
WIPE -- Empties current block
|
|
WIPED? -- f Whether current block is empty
|
|
|
|
# Other
|
|
|
|
DUMP n a -- Prints n bytes at addr a in a hexdump format.
|
|
Prints in chunks of 8 bytes. Doesn't do partial
|
|
lines. Output is designed to fit in 32 columns.
|
|
TICKS n -- Wait for approximately 0.1 millisecond. Don't
|
|
use with n=0.
|