mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
16 lines
348 B
ArmAsm
16 lines
348 B
ArmAsm
;
|
|
; Oliver Schmidt, 24.03.2005
|
|
;
|
|
; unsigned char __fastcall__ dio_write (dhandle_t handle, unsigned sect_num, const void *buffer);
|
|
;
|
|
|
|
.export _dio_write
|
|
.import dioprolog, diocommon
|
|
|
|
.include "mli.inc"
|
|
|
|
_dio_write:
|
|
jsr dioprolog
|
|
lda #WRITE_BLOCK_CALL
|
|
jmp diocommon
|