mirror of
https://github.com/cc65/cc65.git
synced 2024-12-27 00:29:31 +00:00
24 lines
530 B
ArmAsm
24 lines
530 B
ArmAsm
|
;
|
||
|
; Christian Groessler, October 2000
|
||
|
;
|
||
|
; this file provides the _dio_write function
|
||
|
;
|
||
|
; unsigned char __fastcall__ _dio_write_verify(_driveid_t drive_id, _sectnum_t sect_num, void *buffer);
|
||
|
; _driveid_t - 8bit
|
||
|
; _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
|
||
|
|