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

14 lines
208 B
ArmAsm
Raw Normal View History

;
; Oliver Schmidt, 2013-05-31
;
.export tgi_libref
.ifdef __ATARIXL__
.import CIO_handler
tgi_libref := CIO_handler
.else
.import _exit
tgi_libref := _exit
.endif