2000-10-09 22:43:01 +00:00
|
|
|
;
|
|
|
|
; Christian Groessler, October 2000
|
|
|
|
;
|
|
|
|
; this file provides the _dio_write function
|
|
|
|
;
|
2012-10-11 18:22:49 +00:00
|
|
|
; unsigned char __fastcall__ dio_write(dhandle_t handle,unsigned sect_num,const void *buffer);
|
2000-11-16 21:27:42 +00:00
|
|
|
; dhandle_t - 16bit (ptr)
|
2000-10-09 22:43:01 +00:00
|
|
|
;
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.import __sio_call,pushax
|
|
|
|
.export _dio_write
|
|
|
|
.include "atari.inc"
|
2000-10-09 22:43:01 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.proc _dio_write
|
2000-10-09 22:43:01 +00:00
|
|
|
|
2013-05-09 11:56:54 +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
|
|
|
|