1
0
mirror of https://github.com/cc65/cc65.git synced 2025-04-04 06:29:41 +00:00

Merge pull request #43 from groessler/something_to_pull

override _sys() function for Atari targets
This commit is contained in:
Oliver Schmidt 2013-09-18 07:42:00 -07:00
commit 3c8ec18f2e

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

@ -0,0 +1,13 @@
;
; Christian Groessler, 17-Sep-2013
;
; Override _sys() function for Atari targets:
; 'atari' gets the regular function
; 'atarixl' doesn't support the _sys() function
;
.ifndef __ATARIXL__
.include "../common/_sys.s"
.endif