From: cuz Date: Fri, 14 Sep 2001 07:53:34 +0000 (+0000) Subject: Add support for the CBM 510 X-Git-Tag: V2.12.0~2665 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=cce379324d4e5074a1669152f0fa990cc91fff0c;p=cc65 Add support for the CBM 510 git-svn-id: svn://svn.cc65.org/cc65/trunk@916 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/include/time.h b/include/time.h index 5e996ab99..bd8c22b8e 100644 --- a/include/time.h +++ b/include/time.h @@ -61,8 +61,8 @@ struct tm { }; #if defined(__CBM__) -# if defined(__CBM610__) -/* The 610 gets its clock from the AC current */ +# if defined(__CBM510__) || defined(__CBM610__) +/* The 510/610 gets its clock from the AC current */ # define CLK_TCK 50 /* POSIX */ # define CLOCKS_PER_SEC 50 /* ANSI */ # else diff --git a/libsrc/dbg/dbg.c b/libsrc/dbg/dbg.c index 7251207d8..9ddf9d80f 100644 --- a/libsrc/dbg/dbg.c +++ b/libsrc/dbg/dbg.c @@ -80,27 +80,19 @@ static char GetKeyUpdate (void); #endif /* Screen definitions */ -#ifdef __CBM610__ +#if defined(__CBM610__) # define BIGSCREEN # define MAX_X 80 # define MAX_Y 25 # define DUMP_BYTES 16 +#elif defined(__APPLE2__) || defined(__ATARI__) +# define MAX_X 40 +# define MAX_Y 24 +# define DUMP_BYTES 8 #else -# ifdef __APPLE2__ -# define MAX_X 40 -# define MAX_Y 24 -# define DUMP_BYTES 8 -# else -# ifdef __ATARI__ -# define MAX_X 40 -# define MAX_Y 24 -# define DUMP_BYTES 8 -# else -# define MAX_X 40 -# define MAX_Y 25 -# define DUMP_BYTES 8 -# endif -# endif +# define MAX_X 40 +# define MAX_Y 25 +# define DUMP_BYTES 8 #endif