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 lines
429B

  1. XCURRENT @ ( to PSP )
  2. : :
  3. (entry)
  4. ( We cannot use LITN as IMMEDIATE because of bootstrapping
  5. issues. Same thing for ",".
  6. 32 == NUMBER 14 == compiledWord )
  7. [ 32 H@ ! 2 ALLOT 14 H@ ! 2 ALLOT ] C,
  8. BEGIN
  9. WORD
  10. (find)
  11. ( is word )
  12. IF DUP IMMED? IF EXECUTE ELSE , THEN
  13. ( maybe number )
  14. ELSE (parse*) @ EXECUTE LITN THEN
  15. AGAIN ;
  16. ( from PSP ) ';' SWAP 4 - C!