1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-05 06:28:57 +00:00
cc65/libsrc/atari/diowrite.s

24 lines
517 B
ArmAsm
Raw Normal View History

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