]> git.sur5r.net Git - cc65/blobdiff - include/_6525.h
ld65: implement '--allow-multiple-definition' command line parameter
[cc65] / include / _6525.h
index e4f539478f80354a034374f86d87806dbd7efb66..128839c8342908ed8cd66eddf0890063fbcdd0d6 100644 (file)
@@ -1,8 +1,8 @@
 /*****************************************************************************/
 /*                                                                           */
-/*                                 _6525.h                                  */
+/*                                  _6525.h                                  */
 /*                                                                           */
-/*               Internal include file, do not use directly                 */
+/*                Internal include file, do not use directly                 */
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
 
 
 /* Define a structure with the 6525 register offsets. The shadow registers
- * (if port C is unused) are currently not implemented, we would need a
- * union to do that, however that would introduce an additional name.
- */
+** (if port C is unused) are currently not implemented, we would need a
+** union to do that, however that would introduce an additional name.
+*/
 struct __6525 {
-    unsigned char      pra;            /* Port register A */
-    unsigned char      prb;            /* Port register B */
-    unsigned char              prc;            /* Port register C */
-    unsigned char      ddra;           /* Data direction register A */
-    unsigned char      ddrb;           /* Data direction register B */
-    unsigned char      ddrc;           /* Data direction register C */
-    unsigned char      cr;             /* Control register */
-    unsigned char      air;            /* Active interrupt register */
+    unsigned char       pra;            /* Port register A */
+    unsigned char       prb;            /* Port register B */
+    unsigned char       prc;            /* Port register C */
+    unsigned char       ddra;           /* Data direction register A */
+    unsigned char       ddrb;           /* Data direction register B */
+    unsigned char       ddrc;           /* Data direction register C */
+    unsigned char       cr;             /* Control register */
+    unsigned char       air;            /* Active interrupt register */
 };