1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-09-04 16:48:46 +10:00
collapseos/blk/056
2020-04-14 10:04:09 -04:00

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