Mirror of CollapseOS
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

11 行
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.