mirror of
https://github.com/cc65/cc65.git
synced 2024-11-19 06:31:31 +00:00
18 lines
396 B
ArmAsm
18 lines
396 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 open (const char* name, int flags, ...); /* May take a mode argument */
|
||
|
.proc _close
|
||
|
BRK_TELEMON XCLOSE ; launch primitive ROM
|
||
|
rts
|
||
|
.endproc
|
||
|
|
||
|
|