]> git.sur5r.net Git - cc65/commitdiff
Moved declarations that are common to the C16 and the Plus4 libraries over to their...
authorGreg King <gregdk@users.sf.net>
Sun, 1 Apr 2018 19:47:48 +0000 (15:47 -0400)
committerGreg King <gregdk@users.sf.net>
Sun, 1 Apr 2018 19:47:48 +0000 (15:47 -0400)
include/c16.h
include/cbm264.h
include/plus4.h

index c039218f980101f8f4c4d566c690ad4d8c8f0de0..beb2caa567aeb68f62d6b6f149c31f57d1eb1c0e 100644 (file)
@@ -45,8 +45,7 @@
 
 
 
-/* Include the base header file for the 264 series. include file.
- */
+/* Include the base header file for the 264 series. */
 #include <cbm264.h>
 
 
index 46fa64050c3893dcd051b48537e3ece3c9d7e731..5e8a242a7db543440fd0d922131d0704e122f9db 100644 (file)
 /*                                   Code                                    */
 /*****************************************************************************/
 
+void fast (void);
+/* Switch the CPU into double-clock mode. */
 
+void slow (void);
+/* Switch the CPU into single-clock mode. */
 
-/* End of cbm264.h */
-#endif
-
+unsigned char isfast (void);
+/* Returns 1 if the CPU is in double-clock mode. */
 
 
 
+/* End of cbm264.h */
+#endif
index 6edb947e55a33ba5a6e01a697b410b089ce31c67..c8aaf2eafc0a8262a680ced2bffbba88e0f2bd9b 100644 (file)
@@ -45,8 +45,7 @@
 
 
 
-/* Include the base header file for the 264 series. include file.
- */
+/* Include the base header file for the 264 series. */
 #include <cbm264.h>
 
 /* Define hardware */
 extern void plus4_stdjoy_joy[];   /* Referred to by joy_static_stddrv[] */
 extern void plus4_stdser_ser[];
 
-void fast (void);
-/* Switch the CPU into double clock mode. */
-
-void slow (void);
-/* Switch the CPU into single clock mode. */
-
-unsigned char isfast (void);
-/* Returns 1 if the CPU is in double clock mode. */
 
 
 /* End of plus4.h */