Mirror of CollapseOS
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

14 linhas
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. LIT<: 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. )