]> git.sur5r.net Git - cc65/commitdiff
Fix last change: Stack check for all CC65 targets. Enable subdirectories on Apple 2. 40/head
authorChristian Groessler <chris@groessler.org>
Thu, 12 Sep 2013 11:04:55 +0000 (13:04 +0200)
committerChristian Groessler <chris@groessler.org>
Thu, 12 Sep 2013 11:04:55 +0000 (13:04 +0200)
testcode/lib/tinyshell.c

index f3b6aa76992294a4e9126e294f2b5692cdf13656..1410652577da0b300794f6198c9bc99d5cc52aa8 100644 (file)
@@ -7,10 +7,17 @@
 
 #ifdef __ATARI__
 #define UPPERCASE      /* define (e.g. for Atari) to convert filenames etc. to upper case */
-#define CHECK_SP
 #define HAVE_SUBDIRS
 #endif
 
+#ifdef __APPLE2__
+#define HAVE_SUBDIRS
+#endif
+
+#ifdef __CC65__
+#define CHECK_SP
+#endif
+
 #define KEYB_BUFSZ 80
 #define PROMPT ">>> "