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.

14 lines
356B

  1. ( Read word from C<, copy to WORDBUF, null-terminate, and
  2. return WORDBUF. )
  3. : _wb 0x0e RAM+ ;
  4. : _eot 0x0401 _wb ! _wb ;
  5. : WORD
  6. _wb 1+ TOWORD ( a c )
  7. DUP EOT? IF 2DROP _eot EXIT THEN
  8. BEGIN
  9. OVER C! 1+ C< ( a c )
  10. OVER 0x2e RAM+ = OVER WS? OR
  11. UNTIL ( a c )
  12. SWAP _wb - 1- ( ws len ) _wb C!
  13. EOT? IF _eot ELSE _wb THEN ;