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 line
391B

  1. : handle ( c -- f )
  2. DUP '0' '9' =><= IF num 0 EXIT THEN
  3. DUP CMD 2+ C! CMD FIND IF EXECUTE ELSE DROP THEN
  4. 0 ACC ! UPPER 'Q' = ;
  5. : bufp ( buf -- )
  6. DUP 64 + SWAP DO I C@ 0x20 MAX EMIT LOOP ;
  7. : bufs
  8. 1 aty ." I: " IBUF bufp
  9. 2 aty ." F: " FBUF bufp 0 3 gutter ;
  10. : VE
  11. clrscr 0 ACC ! 0 PREVPOS ! contents
  12. BEGIN status bufs setpos KEY handle UNTIL
  13. 19 aty (infl) ;