1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-11 11:30:13 +00:00

17 lines
375 B
ArmAsm
Raw Normal View History

; jede jede@oric.org 2017-01-22
2022-04-24 00:39:04 +02:00
.export _close
2019-02-05 23:27:52 +01:00
2022-04-24 00:39:04 +02:00
.import addysp,popax
2019-02-05 23:27:52 +01:00
2022-04-24 00:39:04 +02:00
.include "zeropage.inc"
.include "telestrat.inc"
.include "errno.inc"
.include "fcntl.inc"
2019-02-05 23:27:52 +01:00
2022-04-24 00:39:04 +02:00
; int __fastcall__ close (int fd);
.proc _close
2022-04-24 00:39:04 +02:00
BRK_TELEMON XCLOSE ; Launch primitive ROM
rts
.endproc