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.

11 lines
530B

  1. CURRENT* -- a A pointer to active CURRENT*. Useful
  2. when we have multiple active dicts.
  3. FILL a n b -- Fill n bytes at addr a with val b.
  4. HERE -- a Push HERE's address
  5. H@ -- a HERE @
  6. MOVE a1 a2 u -- Copy u bytes from a1 to a2, starting
  7. with a1, going up.
  8. MOVE- a1 a2 u -- Copy u bytes from a1 to a2, starting
  9. with a1+u, going down.
  10. MOVE, a u -- Copy u bytes from a to HERE.