mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 03:04:31 +00:00
35676b5c6b
git-svn-id: svn://svn.cc65.org/cc65/trunk@3432 b7a2c559-68d2-44c3-8de9-860c34a00d81
13 lines
202 B
ArmAsm
13 lines
202 B
ArmAsm
;
|
|
; Oliver Schmidt, 24.03.2005
|
|
;
|
|
; unsigned char __fastcall__ dio_close (dhandle_t handle);
|
|
;
|
|
|
|
.export _dio_close
|
|
.import dioepilog
|
|
|
|
_dio_close:
|
|
lda #$00
|
|
jmp dioepilog
|