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 lines
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 ;