Mirror of CollapseOS
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

17 行
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+