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
313B

  1. ( -- n )
  2. : _idle 0xff _sdcSR ;
  3. ( -- n )
  4. ( _sdcSR 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 ( cnt )
  8. BEGIN
  9. _idle
  10. DUP 0xff = IF DROP ELSE NIP EXIT THEN
  11. 1+
  12. DUP 20 = UNTIL
  13. DROP 0xff
  14. ;
  15. 1 12 LOADR+