mirror of
https://github.com/cc65/cc65.git
synced 2024-11-17 09:07:32 +00:00
17 lines
375 B
ArmAsm
17 lines
375 B
ArmAsm
; jede jede@oric.org 2017-01-22
|
|
|
|
.export _close
|
|
|
|
.import addysp,popax
|
|
|
|
.include "zeropage.inc"
|
|
.include "telestrat.inc"
|
|
.include "errno.inc"
|
|
.include "fcntl.inc"
|
|
|
|
; int __fastcall__ close (int fd);
|
|
.proc _close
|
|
BRK_TELEMON XCLOSE ; Launch primitive ROM
|
|
rts
|
|
.endproc
|