mirror of
https://github.com/cc65/cc65.git
synced 2024-11-19 06:31:31 +00:00
61d4b6b03f
git-svn-id: svn://svn.cc65.org/cc65/trunk@5847 b7a2c559-68d2-44c3-8de9-860c34a00d81
16 lines
305 B
ArmAsm
16 lines
305 B
ArmAsm
;
|
|
; Oliver Schmidt, 24.03.2005
|
|
;
|
|
; unsigned char __fastcall__ dio_read (dhandle_t handle, unsigned sect_num, void *buffer);
|
|
;
|
|
|
|
.export _dio_read
|
|
.import dioprolog, diocommon
|
|
|
|
.include "mli.inc"
|
|
|
|
_dio_read:
|
|
jsr dioprolog
|
|
lda #READ_BLOCK_CALL
|
|
jmp diocommon
|