mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-05 08:50:56 +11:00
9 lines
273 B
Plaintext
9 lines
273 B
Plaintext
|
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
|
||
|
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
|