From 367bd368c0739f629ee00c383b08cab6090e4b1d Mon Sep 17 00:00:00 2001 From: Christian Groessler Date: Tue, 17 Sep 2013 22:52:18 +0200 Subject: [PATCH] override _sys() function for Atari targets --- libsrc/atari/_sys.s | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 libsrc/atari/_sys.s diff --git a/libsrc/atari/_sys.s b/libsrc/atari/_sys.s new file mode 100644 index 000000000..e5bf07f30 --- /dev/null +++ b/libsrc/atari/_sys.s @@ -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