2000-10-09 22:43:01 +00:00
|
|
|
;
|
|
|
|
; Christian Groessler, October 2000
|
|
|
|
;
|
|
|
|
; this file provides the _dio_read function
|
|
|
|
;
|
|
|
|
; unsigned char __fastcall__ _dio_read(_driveid_t drive_id, _sectnum_t sect_num, void *buffer);
|
|
|
|
; _driveid_t - 8bit
|
|
|
|
; _sectnum_t - 16bit
|
|
|
|
;
|
|
|
|
|
2000-10-12 21:00:19 +00:00
|
|
|
.import __sio_call,pushax
|
2000-10-09 22:43:01 +00:00
|
|
|
.export __dio_read
|
|
|
|
.include "atari.inc"
|
|
|
|
|
|
|
|
.proc __dio_read
|
|
|
|
|
2000-10-12 21:00:19 +00:00
|
|
|
jsr pushax ; push buffer address
|
|
|
|
ldx #%01000000 ; direction value
|
|
|
|
lda #SIO_READ ; read sector command
|
|
|
|
jmp __sio_call ; do the call and return to the user
|
2000-10-09 22:43:01 +00:00
|
|
|
|
|
|
|
.endproc
|
2000-10-12 21:00:19 +00:00
|
|
|
|