2000-10-12 21:01:24 +00:00
|
|
|
;
|
|
|
|
; Christian Groessler, October 2000
|
|
|
|
;
|
2001-11-06 01:30:38 +00:00
|
|
|
; this file provides the _dio_write_verify function
|
2000-10-12 21:01:24 +00:00
|
|
|
;
|
2000-11-16 21:27:42 +00:00
|
|
|
; unsigned char __fastcall__ dio_write_verify(dhandle_t handle,sectnum_t sect_num,const void *buffer);
|
|
|
|
; dhandle_t - 16bit (ptr)
|
|
|
|
; sectnum_t - 16bit
|
2000-10-12 21:01:24 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
.import __sio_call,pushax
|
2000-11-16 21:27:42 +00:00
|
|
|
.export _dio_write_verify
|
2000-10-12 21:01:24 +00:00
|
|
|
.include "atari.inc"
|
|
|
|
|
2000-11-16 21:27:42 +00:00
|
|
|
.proc _dio_write_verify
|
2000-10-12 21:01:24 +00:00
|
|
|
|
|
|
|
jsr pushax ; push buffer address
|
|
|
|
ldx #%10000000 ; indicate i/o direction (write)
|
|
|
|
lda #SIO_WRITEV ; write sector command
|
|
|
|
jmp __sio_call ; do the call and return to the user
|
|
|
|
|
|
|
|
.endproc
|
|
|
|
|