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.

17 line
406B

  1. : IF ( -- a | a: br cell addr )
  2. COMPILE (?br) H@ 1 ALLOT ( br cell allot )
  3. ; IMMEDIATE
  4. : THEN ( a -- | a: br cell addr )
  5. DUP H@ -^ _bchk SWAP ( a-H a ) C!
  6. ; IMMEDIATE
  7. : ELSE ( a1 -- a2 | a1: IF cell a2: ELSE cell )
  8. COMPILE (br)
  9. 1 ALLOT
  10. [COMPILE] THEN
  11. H@ 1- ( push a. 1- for allot offset )
  12. ; IMMEDIATE
  13. : LIT"
  14. COMPILE (s) H@ 0 C, ,"
  15. DUP H@ -^ 1- ( a len ) SWAP C!
  16. ; IMMEDIATE