1
0
mirror of https://github.com/cc65/cc65.git synced 2026-04-21 09:17:52 +00:00

override _sys() function for Atari targets

This commit is contained in:
Christian Groessler
2013-09-17 22:52:18 +02:00
parent b20294594c
commit 367bd368c0
+13
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
;
.if .not .defined(__ATARIXL__)
.include "../common/_sys.s"
.endif