mirror of
https://github.com/cc65/cc65.git
synced 2024-12-28 06:30:16 +00:00
Split libref.s into multiple files to prevent inclusion of unnecessary code.
This commit is contained in:
parent
14c62f1368
commit
15e2afcdf3
@ -2,14 +2,8 @@
|
|||||||
; Oliver Schmidt, 2013-05-31
|
; Oliver Schmidt, 2013-05-31
|
||||||
;
|
;
|
||||||
|
|
||||||
.export em_libref, joy_libref, tgi_libref
|
.export em_libref, joy_libref
|
||||||
.import _exit
|
.import _exit
|
||||||
|
|
||||||
em_libref := _exit
|
em_libref := _exit
|
||||||
joy_libref := _exit
|
joy_libref := _exit
|
||||||
.ifdef __ATARIXL__
|
|
||||||
.import CIO_handler
|
|
||||||
tgi_libref := CIO_handler
|
|
||||||
.else
|
|
||||||
tgi_libref := _exit
|
|
||||||
.endif
|
|
||||||
|
13
libsrc/atari/tgiref.s
Normal file
13
libsrc/atari/tgiref.s
Normal 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
|
Loading…
Reference in New Issue
Block a user