]> git.sur5r.net Git - cc65/commitdiff
Add CLK_TCK for atmos
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 14 Apr 2003 08:08:14 +0000 (08:08 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 14 Apr 2003 08:08:14 +0000 (08:08 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@2050 b7a2c559-68d2-44c3-8de9-860c34a00d81

include/time.h

index fd3a0d06837ebc2a27fb906c278351da9a119891..96463cc892b92d94750de90061ca4a4dc7f2df42 100644 (file)
@@ -76,7 +76,15 @@ extern struct _timezone {
 
 
 
-#if defined(__CBM__)
+#if defined(__ATARI__)
+/* The clock depends on the video standard, so read it at runtime */
+unsigned _clocks_per_sec (void);
+#  define CLK_TCK              _clocks_per_sec()
+#  define CLOCKS_PER_SEC       _clocks_per_sec()
+#elif defined(__ATMOS__)
+#  define CLK_TCK                      100     /* POSIX */
+#  define CLOCKS_PER_SEC       100     /* ANSI */
+#elif defined(__CBM__)
 #  if defined(__CBM510__) || defined(__CBM610__)
 /* The 510/610 gets its clock from the AC current */
 #    define CLK_TCK                    50      /* POSIX */
@@ -87,13 +95,6 @@ extern struct _timezone {
 #  endif
 #endif
 
-#if defined(__ATARI__)
-/* The clock depends on the video standard, so read it at runtime */
-unsigned _clocks_per_sec (void);
-#  define CLK_TCK              _clocks_per_sec()
-#  define CLOCKS_PER_SEC       _clocks_per_sec()
-#endif
-
 
 
 time_t _systime (void);