Mirror of CollapseOS
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

17 wiersze
717B

  1. Entry management
  2. '? x -- a f Find x it in dict. If found, f=1 and
  3. a = wordref. If not found, f=0 and
  4. a = string addr.
  5. ' x -- a Push addr of word x to a. If not found,
  6. aborts.
  7. ['] x -- *I* Like "'", but spits the addr as a number
  8. literal. If not found, aborts.
  9. , n -- Write n in HERE and advance it.
  10. ALLOT n -- Move HERE by n bytes
  11. C, b -- Write byte b in HERE and advance it.
  12. FIND w -- a f Like '?, but for w.
  13. EMPTY -- Rewind HERE and CURRENT where they were at
  14. system initialization.
  15. (cont.)