Split libref.s into multiple files to prevent inclusion of unnecessary code.

This commit is contained in:
Oliver Schmidt
2020-06-04 21:40:40 +02:00
parent 14c62f1368
commit 15e2afcdf3
2 changed files with 14 additions and 7 deletions

13
libsrc/atari/tgiref.s Normal file
View File

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