2000-10-09 22:43:01 +00:00
|
|
|
;
|
|
|
|
; Christian Groessler, October 2000
|
|
|
|
;
|
|
|
|
; this file provides the _dio_write function
|
|
|
|
;
|
2000-10-18 23:50:01 +00:00
|
|
|
; unsigned char __fastcall__ _dio_write(_dhandle_t handle,_sectnum_t sect_num,const void *buffer);
|
|
|
|
; _dhandle_t - 16bit (ptr)
|
2000-10-09 22:43:01 +00:00
|
|
|
; _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_write
|
|
|
|
.include "atari.inc"
|
|
|
|
|
|
|
|
.proc __dio_write
|
|
|
|
|
2000-10-12 21:00:19 +00:00
|
|
|
jsr pushax ; push buffer address
|
|
|
|
ldx #%10000000 ; indicate i/o direction (write)
|
|
|
|
lda #SIO_WRITE ; write 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
|
|
|
|