mirror of
https://github.com/cc65/cc65.git
synced 2024-11-19 06:31:31 +00:00
14 lines
208 B
ArmAsm
14 lines
208 B
ArmAsm
|
;
|
||
|
; Oliver Schmidt, 2013-05-31
|
||
|
;
|
||
|
|
||
|
.export tgi_libref
|
||
|
|
||
|
.ifdef __ATARIXL__
|
||
|
.import CIO_handler
|
||
|
tgi_libref := CIO_handler
|
||
|
.else
|
||
|
.import _exit
|
||
|
tgi_libref := _exit
|
||
|
.endif
|