mirror of
https://github.com/hsoft/collapseos.git
synced 2025-04-05 06:38:40 +11:00
Adopted push/pop notation, added comments
I explained why one nop seems unecessesary with some more comments.
This commit is contained in:
parent
370c3fa264
commit
176084d619
@ -91,17 +91,17 @@ sdcWakeUp:
|
|||||||
ld b, 10 ; 10 * 11 == 110
|
ld b, 10 ; 10 * 11 == 110
|
||||||
ld a, 0xff
|
ld a, 0xff
|
||||||
.loop:
|
.loop:
|
||||||
out (SDC_PORT_SPI), a
|
out (SDC_PORT_SPI), a ;11 cycles
|
||||||
djnz .loop
|
djnz .loop ;13 cycles
|
||||||
ret
|
ret
|
||||||
|
|
||||||
; Initiate SPI exchange with the SD card. A is the data to send. Received data
|
; Initiate SPI exchange with the SD card. A is the data to send. Received data
|
||||||
; is placed in A.
|
; is placed in A.
|
||||||
sdcSendRecv:
|
sdcSendRecv:
|
||||||
out (SDC_PORT_SPI), a
|
out (SDC_PORT_SPI), a
|
||||||
push hl ; nop, pairs with pop later
|
push hl ; nop, --> lvl 1
|
||||||
in a, (SDC_PORT_SPI)
|
in a, (SDC_PORT_SPI)
|
||||||
pop hl ; nop, pairs with earlier push
|
pop hl ; nop, <-- lvl 1
|
||||||
ret
|
ret
|
||||||
|
|
||||||
sdcIdle:
|
sdcIdle:
|
||||||
|
Loading…
Reference in New Issue
Block a user