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.

11 lines
251B

  1. ( -- n )
  2. : _idle 0xff (spix) ;
  3. ( -- n )
  4. ( spix 0xff until the response is something else than 0xff
  5. for a maximum of 20 times. Returns 0xff if no response. )
  6. : _wait
  7. 0 ( dummy ) 20 0 DO
  8. DROP _idle DUP 0xff = NOT IF LEAVE THEN
  9. LOOP ;