]> git.sur5r.net Git - cc65/commitdiff
Add support for the CBM 510
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 14 Sep 2001 07:53:34 +0000 (07:53 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 14 Sep 2001 07:53:34 +0000 (07:53 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@916 b7a2c559-68d2-44c3-8de9-860c34a00d81

include/time.h
libsrc/dbg/dbg.c

index 5e996ab99261969dec7ee4fa6a09b8ee4f6777a1..bd8c22b8eaf18a41a6b0de68286e486b90e7781f 100644 (file)
@@ -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
index 7251207d8094f19ca81a6ef9793d8a342ee3980e..9ddf9d80ff35319f5d44e0a090233f75b7cdb799 100644 (file)
@@ -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