EMIT
BL
#BACKSPACE-CHAR
[] no special info, see general notes
FORTH/BASE forth_usual ordinary constant
* C+! ( n addr -- ) Add the low-order byte of _n_ to the byte at _addr_, removing both from the stack.
C+!
( n addr -- )
FORTH/BASE forth_usual ordinary primitive
* VOCABULARY ( 'name' -- ) create a vocabulary of that name. If the named vocabulary is called later, it will run ((VOCABULARY)) , thereby putting it into the current search order. Special pfe-extensions are accessible via CASE-SENSITIVE-VOC and SEARCH-ALSO-VOC simulate: : VOCABULARY CREATE ALLOT-WORDLIST DOES> ( the ((VOCABULARY)) runtime ) CONTEXT ! ; IMMEDIATE
VOCABULARY
( 'name' -- )
((VOCABULARY))
CASE-SENSITIVE-VOC
SEARCH-ALSO-VOC
simulate: : VOCABULARY CREATE ALLOT-WORDLIST DOES> ( the ((VOCABULARY)) runtime ) CONTEXT ! ; IMMEDIATE
* BOUNDS ( str len -- str+len str ) Convert _str len_ to range for DO-loop. : BOUNDS ( str len -- str+len str ) OVER + SWAP ;
BOUNDS
( str len -- str+len str )
: BOUNDS ( str len -- str+len str ) OVER + SWAP ;
OFF!
* ON! ( addr -- ) Store -1 at _addr_. Defined in f83 as ON. See antonym OFF!. : ON! ( addr -- ) -1 SWAP ! ;
ON!
( addr -- )
ON
: ON! ( addr -- ) -1 SWAP ! ;
* OFF ( addr -- ) Store 0 at _addr_. See `ON`. : OFF ( addr -- ) 0 SWAP ! ;
OFF
: OFF ( addr -- ) 0 SWAP ! ;
FORTH/BASE forth_usual forthword synonym
* ON ( addr -- ) Store -1 at _addr_. See `OFF`. : ON ( addr -- ) -1 SWAP ! ;
: ON ( addr -- ) -1 SWAP ! ;
* PLACE ( str len addr -- ) Place the string _str len_ at _addr_, formatting it as a counted string. : PLACE 2DUP 2>R 1+ SWAP MOVE 2R> C! ; : PLACE 2DUP C! 1+ SWAP CMOVE ;
PLACE
( str len addr -- )
: PLACE 2DUP 2>R 1+ SWAP MOVE 2R> C! ; : PLACE 2DUP C! 1+ SWAP CMOVE ;
* +PLACE ( str len add2 -- ) Append string _str len_ to the counted string at _addr_. a.k.a. APPEND (being a SYNONYM now) : +PLACE 2DUP 2>R COUNT + SWAP MOVE ( ) 2R> C+! ;
+PLACE
( str len add2 -- )
APPEND
SYNONYM
: +PLACE 2DUP 2>R COUNT + SWAP MOVE ( ) 2R> C+! ;
* C+PLACE ( char addr -- ) Append _char_ to the counted string at _addr_. a.k.a. APPEND-CHAR (being a SYNONYM now) : C+PLACE DUP >R COUNT DUP 1+ R> C! + C! ;
C+PLACE
( char addr -- )
APPEND-CHAR
: C+PLACE DUP >R COUNT DUP 1+ R> C! + C! ;
* APPEND ( str len add2 -- ) Append string _str len_ to the counted string at _addr_. AKA `+PLACE`. : APPEND 2DUP 2>R COUNT + SWAP MOVE ( ) 2R> C+! ;
: APPEND 2DUP 2>R COUNT + SWAP MOVE ( ) 2R> C+! ;
* APPEND-CHAR ( char addr -- ) Append _char_ to the counted string at _addr_. : APPEND-CHAR DUP >R COUNT DUP 1+ R> C! + C! ;
: APPEND-CHAR DUP >R COUNT DUP 1+ R> C! + C! ;
* @EXECUTE ( xt -- ? ) same as @ EXECUTE , but checks for null as xt and silently ignores it. Same as in most forths where defined. simulate: : @EXECUTE @ ?DUP IF EXECUTE THEN ;
@EXECUTE
( xt -- ? )
@
EXECUTE
simulate: : @EXECUTE @ ?DUP IF EXECUTE THEN ;
* ?LEAVE ( cond -- ) leave a (innermost) loop if condition is true
?LEAVE
( cond -- )
FORTH/BASE forth_usual compiling primitive
* NOOP ( -- ) do nothing, used as a place-holder where an execution word is needed
NOOP
( -- )
* RP@ ( -- addr ) returns the return stack pointer example: : R@ RP@ @ ;
RP@
( -- addr )
example: : R@ RP@ @ ;
* RP! ( addr -- ) sets the return stack pointer, reverse of RP@
RP!
* SP! ( ... addr -- ) sets the stack pointer, reverse of SP@
SP!
( ... addr -- )
SP@
* -ROT ( a b c -- c a b ) inverse of ROT
-ROT
( a b c -- c a b )
ROT
* CSET ( n addr -- ) set bits in byte at given address simulate: : CSET TUCK @ SWAP OR SWAP ! ;
CSET
simulate: : CSET TUCK @ SWAP OR SWAP ! ;
* CRESET ( n addr -- ) reset bits in byte at given address simulate: : CRESET TUCK @ SWAP NOT AND SWAP ! ;
CRESET
simulate: : CRESET TUCK @ SWAP NOT AND SWAP ! ;
* CTOGGLE ( n addr -- ) toggle bits in byte at given address simulate: : CTOGGLE TUCK @ SWAP XOR SWAP ! ;
CTOGGLE
simulate: : CTOGGLE TUCK @ SWAP XOR SWAP ! ;
* TOGGLE ( c-addr charmask -- ) toggle the bits given in charmask, see also SMUDGE and = UNSMUDGE example: the fig-style SMUDGE had been defined such : FIG-SMUDGE LATEST >FFA (SMUDGE#) TOGGLE ;
TOGGLE
( c-addr charmask -- )
SMUDGE
example: the fig-style SMUDGE had been defined such : FIG-SMUDGE LATEST >FFA (SMUDGE#) TOGGLE ;
* 3DUP ( x y z -- x y z x y z ) Copy top three elements on the stack onto top of stack. : 3DUP THIRD THIRD THIRD ; or : 3DUP 3 PICK 3 PICK 3 PICK ;
3DUP
( x y z -- x y z x y z )
: 3DUP THIRD THIRD THIRD ;
: 3DUP 3 PICK 3 PICK 3 PICK ;
* 3DROP ( x y z -- ) Drop the top three elements from the stack. : 3DROP DROP 2DROP ;
3DROP
( x y z -- )
: 3DROP DROP 2DROP ;
* 4DUP ( a b c d -- a b c d a b c d ) simulate: : 4DUP 4 PICK 4 PICK 4 PICK 4 PICK ;
4DUP
( a b c d -- a b c d a b c d )
simulate: : 4DUP 4 PICK 4 PICK 4 PICK 4 PICK ;
* 4DROP ( x y z -- ) Drop the top three elements from the stack. : 4DROP 2DROP 2DROP ;
4DROP
: 4DROP 2DROP 2DROP ;
* TOUPPER ( c1 -- c2 ) convert a single character to upper case : TOUPPER >R _toupper ;
TOUPPER
( c1 -- c2 )
: TOUPPER >R _toupper ;
* UPPER ( addr cnt -- ) convert string to upper case simulate: : UPPER 0 DO DUP I + DUP C@ UPC SWAP C! LOOP DROP ;
UPPER
( addr cnt -- )
simulate: : UPPER 0 DO DUP I + DUP C@ UPC SWAP C! LOOP DROP ;
* LOWER ( addr cnt -- ) convert string to lower case This is not in LP's F83 but provided for symmetry simulate: : LOWER 0 DO DUP I + DUP C@ >R _tolower SWAP C! LOOP DROP ;
LOWER
simulate: : LOWER 0 DO DUP I + DUP C@ >R _tolower SWAP C! LOOP DROP ;
* ASCII ( [word] -- val ) state smart version of CHAR or [CHAR] resp. simulate: : ASCII [COMPILE] [CHAR] STATE @ IF [COMPILE] LITERAL THEN ;
ASCII
( [word] -- val )
CHAR
[CHAR]
simulate: : ASCII [COMPILE] [CHAR] STATE @ IF [COMPILE] LITERAL THEN ;
* CONTROL ( [word] -- val ) see ASCII, but returns char - '@' simulate: : CONTROL [COMPILE] [CHAR] [CHAR] @ - STATE @ IF [COMPILE] LITERAL THEN ;
CONTROL
simulate: : CONTROL [COMPILE] [CHAR] [CHAR] @ - STATE @ IF [COMPILE] LITERAL THEN ;
* NUMBER? ( addr -- d flag ) convert counted string to number - used in inner interpreter ( INTERPRET ), flags if conversion was successful example: BL WORD HERE NUMBER? 0= IF ." not a number " THEN .
NUMBER?
( addr -- d flag )
INTERPRET
example: BL WORD HERE NUMBER? 0= IF ." not a number " THEN .
* VOCS ( -- ) list all vocabularies in the system simulate: : VOCS VOC-LINK @ BEGIN DUP WHILE DUP ->WORDLIST.NAME @ ID. ->WORDLIST.LINK @ REPEAT DROP ;
VOCS
simulate: : VOCS VOC-LINK @ BEGIN DUP WHILE DUP ->WORDLIST.NAME @ ID. ->WORDLIST.LINK @ REPEAT DROP ;
* EMITS ( n char -- ) Emit _char_ _n_ times. : EMITS ( n char -- ) SWAP 0 ?DO DUP EMIT LOOP DROP ;
EMITS
( n char -- )
: EMITS ( n char -- ) SWAP 0 ?DO DUP EMIT LOOP DROP ;
* FILE-CHECK ( n -- ) Check for file access error. \ : FILE-CHECK ( n -- ) THROW ; : FILE-CHECK ( n -- ) ABORT" File Access Error " ;
FILE-CHECK
( n -- )
\ : FILE-CHECK ( n -- ) THROW ; : FILE-CHECK ( n -- ) ABORT" File Access Error " ;
* MEMORY-CHECK ( n -- ) Check for memory allocation error. \ : MEMORY-CHECK ( n -- ) THROW ; : MEMORY-CHECK ( n -- ) ABORT" Memory Allocation Error " ;
MEMORY-CHECK
\ : MEMORY-CHECK ( n -- ) THROW ; : MEMORY-CHECK ( n -- ) ABORT" Memory Allocation Error " ;
* ++ ( addr -- ) Increment the value at _addr_. : ++ ( addr -- ) 1 SWAP +! ;
++
: ++ ( addr -- ) 1 SWAP +! ;
* @++ ( addr -- addr' x ) Fetch the value _x_ from _addr_, and increment the address by one cell. : @++ ( addr -- addr' x ) DUP CELL+ SWAP @ ;
@++
( addr -- addr' x )
: @++ ( addr -- addr' x ) DUP CELL+ SWAP @ ;
* !++ ( addr x -- addr' ) Store the value _x_ into _addr_, and increment the address by one cell. : !++ ( addr x -- addr' ) OVER ! CELL+ ;
!++
( addr x -- addr' )
: !++ ( addr x -- addr' ) OVER ! CELL+ ;
* @+ ( addr -- addr' x ) Fetch the value _x_ from _addr_, and increment the address by one cell. : @+ ( addr -- addr' x ) DUP CELL+ SWAP @ ;
@+
: @+ ( addr -- addr' x ) DUP CELL+ SWAP @ ;
* !+ ( addr x -- addr' ) Store the value _x_ into _addr_, and increment the address by one cell. : !+ ( addr x -- addr' ) OVER ! CELL+ ;
!+
: !+ ( addr x -- addr' ) OVER ! CELL+ ;
ENDIF
FORTH/BASE forth_usual immediate synonym
* >WORDLIST ( xt -- wordl* ) convert a VOCABULARY-xt into its wordlist reference (as in win32forth)
>WORDLIST
( xt -- wordl* )
EXTENSIONS forth_usual ordinary primitive
PERFORM
EXTENSIONS forth_usual obsolete forthword
UPC