Mirror of CollapseOS
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

17 строки
281B

  1. Logic
  2. = n1 n2 -- f Push true if n1 == n2
  3. < n1 n2 -- f Push true if n1 < n2
  4. > n1 n2 -- f Push true if n1 > n2
  5. CMP n1 n2 -- n Compare n1 and n2 and set n to -1, 0, or 1.
  6. n=0: a1=a2. n=1: a1>a2. n=-1: a1<a2.
  7. NOT f -- f Push the logical opposite of f