From: Christian Groessler Date: Thu, 12 Sep 2013 11:04:55 +0000 (+0200) Subject: Fix last change: Stack check for all CC65 targets. Enable subdirectories on Apple 2. X-Git-Tag: V2.15~228^2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=bd2b2e0f7d2782fdd1a71a426f890ef95596ec13;p=cc65 Fix last change: Stack check for all CC65 targets. Enable subdirectories on Apple 2. --- diff --git a/testcode/lib/tinyshell.c b/testcode/lib/tinyshell.c index f3b6aa769..141065257 100644 --- a/testcode/lib/tinyshell.c +++ b/testcode/lib/tinyshell.c @@ -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 ">>> "