]> git.sur5r.net Git - cc65/blob - src/da65/global.h
bd0b07a4f51d49c892c494f59aa6cd1a5128bba1
[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 extern unsigned         LBreak;         /* Linefeed if labels exceed this limit */
78 extern unsigned         MIndent;        /* Mnemonic indent */
79 extern unsigned         AIndent;        /* Argument indent */
80 extern unsigned         CIndent;        /* Comment indent */
81 extern unsigned         TIndent;        /* Text bytes indent */
82 extern unsigned         BytesPerLine;   /* Max. number of data bytes per line */
83
84
85
86 /* End of global.h */
87
88 #endif
89
90
91