mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-01 23:20:56 +11:00
15 lines
181 B
NASM
15 lines
181 B
NASM
; SDC-related basic commands
|
|
|
|
basSDCI:
|
|
jp sdcInitializeCmd
|
|
|
|
basSDCF:
|
|
jp sdcFlushCmd
|
|
|
|
basSDCCmds:
|
|
.db "sdci", 0
|
|
.dw basSDCI
|
|
.db "sdcf", 0
|
|
.dw basSDCF
|
|
.db 0xff ; end of table
|