]> git.sur5r.net Git - cc65/blobdiff - src/od65/global.h
Rather stay with OFF_YEAR as it is an "officially" name.
[cc65] / src / od65 / global.h
index 58691cdda85a9a077a5707f07c947c7eab843ae4..7cc531f6e044503a826fd3a9f35e256ce4368901 100644 (file)
@@ -6,10 +6,10 @@
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 2000     Ullrich von Bassewitz                                        */
-/*              Wacholderweg 14                                              */
-/*              D-70597 Stuttgart                                            */
-/* EMail:       uz@musoftware.de                                             */
+/* (C) 2000-2011, Ullrich von Bassewitz                                      */
+/*                Roemerstrasse 52                                           */
+/*                D-70794 Filderstadt                                        */
+/* EMail:         uz@cc65.org                                                */
 /*                                                                           */
 /*                                                                           */
 /* This software is provided 'as-is', without any expressed or implied       */
 
 
 /*****************************************************************************/
-/*                                  Data                                    */
+/*                                  Data                                    */
 /*****************************************************************************/
 
 
 
-#define        D_HEADER        0x00000001UL    /* Dump the header */    
+#define        D_HEADER        0x0001U         /* Dump the header */
+#define D_OPTIONS              0x0002U         /* Dump the options */
+#define D_FILES                0x0004U         /* Dump source file info */
+#define D_SEGMENTS             0x0008U         /* Dump segment info */
+#define D_IMPORTS              0x0010U         /* Dump imported symbols */
+#define D_EXPORTS              0x0020U         /* Dump exported symbols */
+#define D_DBGSYMS              0x0040U         /* Dump debug symbols */
+#define D_LINEINFO      0x0080U         /* Dump line infos */
+#define D_SCOPES        0x0100U         /* Dump scopes */
+#define D_SEGSIZE       0x0200U         /* Dump segment sizes */
+#define D_ALL                  0xFFFFU         /* Dump anything */
 
 
 
-extern unsigned long   What;           /* What should get dumped? */
+extern unsigned        What;           /* What should get dumped? */
 
 
 
@@ -58,4 +68,3 @@ extern unsigned long  What;           /* What should get dumped? */
 
 
 
-