]> git.sur5r.net Git - cc65/blob - src/da65/global.h
Change the makefiles so that CFLAGS that are special for the application are
[cc65] / src / da65 / global.h
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                 global.h                                  */
4 /*                                                                           */
5 /*                Global variables for the da65 disassembler                 */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 2000-2006 Ullrich von Bassewitz                                       */
10 /*               Römerstrasse 52                                             */
11 /*               D-70794 Filderstadt                                         */
12 /* EMail:        uz@cc65.org                                                 */
13 /*                                                                           */
14 /*                                                                           */
15 /* This software is provided 'as-is', without any expressed or implied       */
16 /* warranty.  In no event will the authors be held liable for any damages    */
17 /* arising from the use of this software.                                    */
18 /*                                                                           */
19 /* Permission is granted to anyone to use this software for any purpose,     */
20 /* including commercial applications, and to alter it and redistribute it    */
21 /* freely, subject to the following restrictions:                            */
22 /*                                                                           */
23 /* 1. The origin of this software must not be misrepresented; you must not   */
24 /*    claim that you wrote the original software. If you use this software   */
25 /*    in a product, an acknowledgment in the product documentation would be  */
26 /*    appreciated but is not required.                                       */
27 /* 2. Altered source versions must be plainly marked as such, and must not   */
28 /*    be misrepresented as being the original software.                      */
29 /* 3. This notice may not be removed or altered from any source              */
30 /*    distribution.                                                          */
31 /*                                                                           */
32 /*****************************************************************************/
33
34
35
36 #ifndef GLOBAL_H
37 #define GLOBAL_H
38
39
40
41 /*****************************************************************************/
42 /*                                   Data                                    */
43 /*****************************************************************************/
44
45
46
47 /* File stuff */
48 extern const char*      InFile;         /* Name of input file */
49 extern const char*      OutFile;        /* Name of output file */
50
51 /* Default extensions */
52 extern const char       OutExt[];       /* Output file extension */
53 extern const char       CfgExt[];       /* Config file extension */
54
55 /* Flags and other command line stuff */
56 extern unsigned char    DebugInfo;      /* Add debug info to the object file */
57 extern unsigned char    FormFeeds;      /* Add form feeds to the output? */
58 extern unsigned char    UseHexOffs;     /* Use hexadecimal label offsets */
59 extern unsigned char    PassCount;      /* How many passed do we do? */
60 extern long             StartAddr;      /* Start/load address of the program */
61 extern long             InputOffs;      /* Offset into input file */
62 extern long             InputSize;      /* Number of bytes to read from input */
63
64 /* Stuff needed by many routines */
65 extern unsigned         Pass;           /* Disassembler pass */
66 extern char             Now[128];       /* Current time as string */
67
68 /* Comments */
69 #define MIN_COMMENTS    0
70 #define MAX_COMMENTS    4
71 extern unsigned         Comments;       /* Add which comments to the output? */
72
73 /* Page formatting */
74 #define MIN_PAGE_LEN    32
75 #define MAX_PAGE_LEN    127
76 extern unsigned         PageLength;     /* Length of a listing page */
77
78 /* Linefeed if labels exceed this limit */
79 #define MIN_LABELBREAK  1
80 #define MAX_LABELBREAK  128
81 extern unsigned         LBreak;
82
83 /* Mnemonic column */
84 #define MIN_MCOL        1
85 #define MAX_MCOL        127
86 extern unsigned         MCol;
87
88 /* Argument column */
89 #define MIN_ACOL        1
90 #define MAX_ACOL        127
91 extern unsigned         ACol;
92
93 /* Comment column */
94 #define MIN_CCOL        1
95 #define MAX_CCOL        127
96 extern unsigned         CCol;
97
98 /* Text bytes column */
99 #define MIN_TCOL        1
100 #define MAX_TCOL        127
101 extern unsigned         TCol;
102
103 /* Max. number of data bytes per line */
104 #define MIN_BYTESPERLINE        1
105 #define MAX_BYTESPERLINE        127
106 extern unsigned         BytesPerLine;
107
108
109
110 /* End of global.h */
111
112 #endif
113
114
115