mirror of
https://github.com/cc65/cc65.git
synced 2024-11-19 21:32:19 +00:00
b5fef66f37
Cleaning, and replace tab to spaces Converting hex lowercase value into uppercase char. Changing := and = when it was needed
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
|
|
|
|
|