Mirror of CollapseOS
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

17 satır
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+