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.

16 lines
440B

  1. ( cmd arg1 arg2 -- r )
  2. ( Send a command that expects a R1 response, handling CS. )
  3. : SDCMDR1 _sdcSel _cmd _sdcDesel ;
  4. ( cmd arg1 arg2 -- r arg1 arg2 )
  5. ( Send a command that expects a R7 response, handling CS. A R7
  6. is a R1 followed by 4 bytes. arg1 contains bytes 0:1, arg2
  7. has 2:3 )
  8. : SDCMDR7
  9. _sdcSel
  10. _cmd ( r )
  11. _idle 8 LSHIFT _idle + ( r arg1 )
  12. _idle 8 LSHIFT _idle + ( r arg1 arg2 )
  13. _sdcDesel
  14. ;