collapseos/forth/core.fs

139 lines
3.3 KiB
Forth
Raw Normal View History

: H@ HERE @ ;
: IMMEDIATE
CURRENT @ 1 -
DUP C@ 128 OR SWAP C!
;
2020-03-28 06:25:20 +11:00
: [ INTERPRET 1 FLAGS ! ; IMMEDIATE
: ] R> DROP ;
2020-04-12 03:13:20 +10:00
: LITS 34 , SCPY ;
2020-03-23 02:56:40 +11:00
: LIT< WORD LITS ; IMMEDIATE
2020-04-12 03:13:20 +10:00
: LITA 36 , , ;
: '
WORD (find) (?br) [ 4 , ] EXIT
LIT< (wnf) (find) DROP EXECUTE
;
2020-04-12 03:13:20 +10:00
: ['] ' LITA ; IMMEDIATE
: COMPILE ' LITA ['] , , ; IMMEDIATE
2020-03-22 07:17:51 +11:00
: [COMPILE] ' , ; IMMEDIATE
: BEGIN H@ ; IMMEDIATE
: AGAIN COMPILE (br) H@ - , ; IMMEDIATE
: UNTIL COMPILE (?br) H@ - , ; IMMEDIATE
2020-03-22 07:27:21 +11:00
: ( BEGIN LIT< ) WORD SCMP NOT UNTIL ; IMMEDIATE
( Hello, hello, krkrkrkr... do you hear me?
Ah, voice at last! Some lines above need comments
BTW: Forth lines limited to 64 cols because of default
input buffer size in Collapse OS
2020-03-17 12:31:43 +11:00
2020-03-26 11:06:06 +11:00
"_": words starting with "_" are meant to be "private",
that is, only used by their immediate surrondings.
2020-04-12 03:13:20 +10:00
LITS: 34 == litWord
LITA: 36 == addrWord
COMPILE: Tough one. Get addr of caller word (example above
2020-04-12 03:13:20 +10:00
(br)) and then call LITA on it. )
2020-03-19 07:39:22 +11:00
: +! SWAP OVER @ + SWAP ! ;
: -^ SWAP - ;
: ALLOT HERE +! ;
: IF ( -- a | a: br cell addr )
COMPILE (?br)
H@ ( push a )
2 ALLOT ( br cell allot )
; IMMEDIATE
: THEN ( a -- | a: br cell addr )
DUP H@ -^ SWAP ( a-H a )
!
; IMMEDIATE
: ELSE ( a1 -- a2 | a1: IF cell a2: ELSE cell )
COMPILE (br)
2 ALLOT
DUP H@ -^ SWAP ( a-H a )
!
H@ 2 - ( push a. -2 for allot offset )
; IMMEDIATE
2020-03-23 02:49:09 +11:00
: CREATE
2020-03-28 06:25:20 +11:00
(entry) ( empty header with name )
11 ( 11 == cellWord )
2020-03-28 06:25:20 +11:00
, ( write it )
2020-03-23 02:49:09 +11:00
;
2020-03-31 10:01:28 +11:00
( We run this when we're in an entry creation context. Many
things we need to do.
1. Change the code link to doesWord
2. Leave 2 bytes for regular cell variable.
3. Write down RS' RTOS to entry.
4. exit parent definition
)
: DOES>
( Overwrite cellWord in CURRENT )
2020-04-01 12:46:52 +11:00
( 43 == doesWord )
43 CURRENT @ !
2020-03-31 10:01:28 +11:00
( When we have a DOES>, we forcefully place HERE to 4
bytes after CURRENT. This allows a DOES word to use ","
and "C," without messing everything up. )
CURRENT @ 4 + HERE !
( HERE points to where we should write R> )
R> ,
( We're done. Because we've popped RS, we'll exit parent
definition )
;
: VARIABLE CREATE 2 ALLOT ;
2020-03-31 10:01:28 +11:00
: CONSTANT CREATE , DOES> @ ;
2020-03-17 13:36:29 +11:00
: / /MOD SWAP DROP ;
: MOD /MOD DROP ;
( In addition to pushing H@ this compiles 2 >R so that loop
2020-03-22 08:21:01 +11:00
variables are sent to PS at runtime )
: DO
COMPILE SWAP COMPILE >R COMPILE >R
H@
; IMMEDIATE
2020-03-22 08:21:01 +11:00
( One could think that we should have a sub word to avoid all
these COMPILE, but we can't because otherwise it messes with
the RS )
: LOOP
COMPILE R> 1 LITN COMPILE + COMPILE DUP COMPILE >R
COMPILE I' COMPILE = COMPILE (?br)
H@ - ,
COMPILE R> COMPILE DROP COMPILE R> COMPILE DROP
; IMMEDIATE
2020-04-06 11:01:19 +10:00
( a1 a2 u -- )
: MOVE
( u ) 0 DO
SWAP DUP I + C@ ( a2 a1 x )
2020-04-06 11:01:19 +10:00
ROT SWAP OVER I + ( a1 a2 x a2 )
C! ( a1 a2 )
2020-04-06 11:01:19 +10:00
LOOP
2020-04-07 09:59:20 +10:00
2DROP
2020-04-06 11:01:19 +10:00
;
2020-04-09 10:40:23 +10:00
: DELW
2020-04-09 22:26:27 +10:00
1 - 0 SWAP C!
2020-04-09 10:40:23 +10:00
;
2020-04-13 22:09:36 +10:00
: PREV
3 - DUP @ ( a o )
- ( a-o )
;
: WHLEN
1 - C@ ( name len field )
127 AND ( 0x7f. remove IMMEDIATE flag )
3 + ( fixed header len )
;
: FORGET
' DUP ( w w )
( HERE must be at the end of prev's word, that is, at the
beginning of w. )
DUP WHLEN - HERE ! ( w )
PREV CURRENT !
;