Mirror of CollapseOS
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

17 行
435B

  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 256 * _idle + ( r arg1 )
  12. _idle 256 * _idle + ( r arg1 arg2 )
  13. _sdcDesel
  14. ;