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

14 行
511B

  1. : _ BEGIN LIT< ) WORD S= UNTIL ; IMMEDIATE
  2. 40 CURRENT @ 4 - C!
  3. ( Hello, hello, krkrkrkr... do you hear me?
  4. Ah, voice at last! Some lines above need comments
  5. BTW: Forth lines limited to 64 cols because of default
  6. input buffer size in Collapse OS
  7. 40 is ASCII for '('. We do this to simplify XPACK's task of
  8. not mistakenly consider '(' definition as a comment.
  9. LITS: 34 == litWord
  10. LITA: 36 == addrWord
  11. COMPILE: Tough one. Get addr of caller word (example above
  12. (br)) and then call LITA on it. )