]> git.sur5r.net Git - cc65/blobdiff - src/da65/attrtab.h
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / src / da65 / attrtab.h
index 40a414c2ee855256d12ce49cd4e3831a0956ec57..b1caf083d164ca7ec861a1ca1c02255a86d55f19 100644 (file)
@@ -1,8 +1,8 @@
 /*****************************************************************************/
 /*                                                                           */
-/*                                        attrtab.h                                 */
+/*                                 attrtab.h                                 */
 /*                                                                           */
-/*                              Disassembler attribute table                        */
+/*                       Disassembler attribute table                        */
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
@@ -39,7 +39,7 @@
 
 
 /*****************************************************************************/
-/*                                          Data                                    */
+/*                                   Data                                    */
 /*****************************************************************************/
 
 
 typedef enum attr_t {
 
     /* Styles */
-    atDefault              = 0x0000,   /* Default style */
-    atCode                 = 0x0001,
-    atIllegal              = 0x0002,
-    atByteTab              = 0x0003,   /* Same as illegal */
+    atDefault       = 0x0000,   /* Default style */
+    atCode          = 0x0001,
+    atIllegal       = 0x0002,
+    atByteTab       = 0x0003,   /* Same as illegal */
     atDByteTab      = 0x0004,
-    atWordTab              = 0x0005,
-    atDWordTab             = 0x0006,
-    atAddrTab              = 0x0007,
-    atRtsTab               = 0x0008,
+    atWordTab       = 0x0005,
+    atDWordTab      = 0x0006,
+    atAddrTab       = 0x0007,
+    atRtsTab        = 0x0008,
     atTextTab       = 0x0009,
     atSkip          = 0x000A,   /* Skip code completely */
 
     /* Label flags */
-    atNoLabel              = 0x0000,   /* No label for this address */
-    atExtLabel             = 0x0010,   /* External label */
-    atIntLabel      = 0x0020,  /* Internally generated label */
-    atDepLabel             = 0x0040,   /* Dependent label */
+    atNoLabel       = 0x0000,   /* No label for this address */
+    atExtLabel      = 0x0010,   /* External label */
+    atIntLabel      = 0x0020,   /* Internally generated label */
+    atDepLabel      = 0x0040,   /* Dependent label */
     atUnnamedLabel  = 0x0080,   /* Unnamed label */
 
     atLabelDefined  = 0x0100,   /* True if we defined the label */
 
-    atStyleMask     = 0x000F,  /* Output style */
+    atStyleMask     = 0x000F,   /* Output style */
     atLabelMask     = 0x00F0,   /* Label information */
 
     /* Segment */
@@ -79,7 +79,7 @@ typedef enum attr_t {
 
 
 /*****************************************************************************/
-/*                                          Code                                    */
+/*                                   Code                                    */
 /*****************************************************************************/