1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-29 10:29:30 +00:00
cc65/libsrc/atari/diowritev.s
cpg 6b6e282283 adapted function prototype (comment)
git-svn-id: svn://svn.cc65.org/cc65/trunk@382 b7a2c559-68d2-44c3-8de9-860c34a00d81
2000-10-18 23:50:01 +00:00

24 lines
539 B
ArmAsm

;
; Christian Groessler, October 2000
;
; this file provides the _dio_write function
;
; unsigned char __fastcall__ _dio_write_verify(_dhandle_t handle,_sectnum_t sect_num,const void *buffer);
; _dhandle_t - 16bit (ptr)
; _sectnum_t - 16bit
;
.import __sio_call,pushax
.export __dio_write_verify
.include "atari.inc"
.proc __dio_write_verify
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