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

  1. : _sdc@ ( dstaddr blkno -- )
  2. [ SDC_DEVID LITN ] (spie)
  3. 0x51 ( CMD17 ) 0 ROT ( a cmd 0 blkno ) _cmd
  4. IF _err THEN
  5. _wait 0xfe = NOT IF _err THEN
  6. 0 SWAP ( crc a )
  7. 512 0 DO ( crc a )
  8. DUP _idle ( crc a a n )
  9. DUP ROT C! ( crc a n )
  10. ROT SWAP _crc16 ( a crc )
  11. SWAP 1+ ( crc a+1 )
  12. LOOP
  13. DROP ( crc1 )
  14. _idle 8 LSHIFT _idle + ( crc2 )
  15. _wait DROP 0 (spie)
  16. = NOT IF _err THEN ;