collapseos/forth/core.fs

93 lines
2.5 KiB
Forth
Raw Normal View History

: H HERE @ ;
: -^ SWAP - ;
2020-03-23 02:56:40 +11:00
: [LITN] LITN ; IMMEDIATE
: LIT ROUTINE S [LITN] , ;
: LITS LIT SCPY ;
: LIT< WORD LITS ; IMMEDIATE
2020-03-26 11:06:06 +11:00
: _err LIT< word-not-found (print) ABORT ;
: ' WORD (find) SKIP? _err ;
: ['] WORD (find) SKIP? _err LITN ; IMMEDIATE
: COMPILE ' LITN ['] , , ; IMMEDIATE
2020-03-22 07:17:51 +11:00
: [COMPILE] ' , ; IMMEDIATE
2020-03-19 07:39:22 +11:00
: BEGIN H ; IMMEDIATE
2020-03-17 12:31:43 +11:00
: AGAIN COMPILE (bbr) H -^ C, ; IMMEDIATE
2020-03-19 07:39:22 +11:00
: UNTIL COMPILE SKIP? COMPILE (bbr) H -^ C, ; 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.
COMPILE: Tough one. Get addr of caller word (example above
(bbr)) and then call LITN on it. )
2020-03-19 07:39:22 +11:00
: +! SWAP OVER @ + SWAP ! ;
: ALLOT HERE +! ;
: IF ( -- a | a: br cell addr )
COMPILE SKIP? ( if true, don't branch )
COMPILE (fbr)
H ( push a )
1 ALLOT ( br cell allot )
; IMMEDIATE
: THEN ( a -- | a: br cell addr )
DUP H -^ SWAP ( a-H a )
C!
; IMMEDIATE
: ELSE ( a1 -- a2 | a1: IF cell a2: ELSE cell )
COMPILE (fbr)
1 ALLOT
DUP H -^ SWAP ( a-H a )
C!
H 1 - ( push a. -1 for allot offset )
; IMMEDIATE
2020-03-23 02:49:09 +11:00
: CREATE
(entry) ( empty header with name )
2020-03-23 02:49:09 +11:00
ROUTINE C [LITN] ( push cellWord addr )
, ( write it )
;
: VARIABLE CREATE 2 ALLOT ;
: CONSTANT CREATE H ! DOES> @ ;
: = CMP NOT ;
: < CMP 0 1 - = ;
: > CMP 1 = ;
2020-03-17 13:36:29 +11:00
: / /MOD SWAP DROP ;
: MOD /MOD DROP ;
2020-03-22 08:21:01 +11:00
( In addition to pushing H this compiles 2 >R so that loop
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 SKIP? COMPILE (bbr)
H -^ C,
COMPILE R> COMPILE DROP COMPILE R> COMPILE DROP
; IMMEDIATE
2020-03-25 23:39:44 +11:00
( WARNING: there are no limit checks. We must be cautious, in
core code, not to create more than SYSV_BUFSIZE/2 sys vars.
Also: SYSV shouldn't be used during runtime: SYSVNXT won't
point at the right place. It should only be used during
stage1 compilation. This is why this word is not documented
in dictionary.txt )
: (sysv)
(entry)
ROUTINE Y [LITN] ,
SYSVNXT @ ,
2 SYSVNXT +!
;