1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 07:29:33 +00:00
cc65/libsrc/telestrat/close.s

17 lines
375 B
ArmAsm
Raw Normal View History

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