]> git.sur5r.net Git - cc65/commitdiff
override _sys() function for Atari targets
authorChristian Groessler <chris@groessler.org>
Tue, 17 Sep 2013 20:52:18 +0000 (22:52 +0200)
committerChristian Groessler <chris@groessler.org>
Tue, 17 Sep 2013 20:52:18 +0000 (22:52 +0200)
libsrc/atari/_sys.s [new file with mode: 0644]

diff --git a/libsrc/atari/_sys.s b/libsrc/atari/_sys.s
new file mode 100644 (file)
index 0000000..e5bf07f
--- /dev/null
@@ -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