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

18 lines
396 B
ArmAsm
Raw Normal View History

; 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 open (const char* name, int flags, ...); /* May take a mode argument */
.proc _close
BRK_TELEMON XCLOSE ; launch primitive ROM
rts
.endproc