mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-06 03:30:55 +11:00
fca0e79da3
It simply didn't work before, except for =.
39 lines
565 B
Forth
39 lines
565 B
Forth
( Words useful for complex comparison operations )
|
|
|
|
( n1 -- n1 true )
|
|
: <>{ 1 ;
|
|
|
|
( n1 f -- f )
|
|
: <>} SWAP DROP ;
|
|
|
|
|
|
: _|&
|
|
( n1 n2 cell )
|
|
>R >R DUP R> R> ( n1 n1 n2 cell )
|
|
@ EXECUTE ( n1 f )
|
|
;
|
|
|
|
( n1 f n2 -- n1 f )
|
|
: _|
|
|
CREATE , DOES>
|
|
( n1 f n2 cell )
|
|
ROT IF 2DROP 1 EXIT THEN ( n1 true )
|
|
_|&
|
|
;
|
|
|
|
: _&
|
|
CREATE , DOES>
|
|
( n1 f n2 cell )
|
|
ROT NOT IF 2DROP 0 EXIT THEN ( n1 true )
|
|
_|&
|
|
;
|
|
|
|
( All words below have this signature:
|
|
n1 f n2 -- n1 f )
|
|
' = _| |=
|
|
' = _& &=
|
|
' > _| |>
|
|
' > _& &>
|
|
' < _| |<
|
|
' < _& &<
|