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

17 行
497B

  1. : _sdc! ( srcaddr blkno -- )
  2. _sdcSel 0x58 ( CMD24 ) 0 ROT ( a cmd 0 blkno ) _cmd
  3. IF _err THEN
  4. _idle DROP 0xfe _sdcSR DROP
  5. 0 SWAP ( crc a )
  6. 512 0 DO ( crc a )
  7. C@+ ( crc a+1 n )
  8. ROT OVER ( a n crc n )
  9. _crc16 ( a n crc )
  10. SWAP ( a crc n )
  11. _sdcSR DROP ( a crc )
  12. SWAP ( crc a )
  13. LOOP
  14. DROP ( crc ) 256 /MOD ( lsb msb )
  15. _sdcSR DROP _sdcSR DROP
  16. _wait DROP _sdcDesel ;