Mirror of CollapseOS
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

16 satır
602B

  1. ( Now we have "as late as possible" stuff. See bootstrap doc. )
  2. : _bchk DUP 0x7f + 0xff > IF LIT< br-ovfl (print) ABORT THEN ;
  3. : DO 0x33 ( 2>R ) , H@ ; IMMEDIATE
  4. : LOOP 0x43 ( loop ) , H@ - _bchk C, ; IMMEDIATE
  5. ( LEAVE is implemented in low xcomp )
  6. : LITN 0x23 ( n ) , , ;
  7. ( gets its name at the very end. can't comment afterwards )
  8. : _ BEGIN LIT< ) WORD S= UNTIL ; IMMEDIATE
  9. : _ ( : will get its name almost at the very end )
  10. (entry) 1 ( compiled ) C,
  11. BEGIN
  12. WORD FIND
  13. IF ( is word ) DUP IMMED? IF EXECUTE ELSE , THEN
  14. ELSE ( maybe number ) (parse) LITN THEN
  15. AGAIN ;