Mirror of CollapseOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
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.)