1/*****************************************************************************/
2/* */
3/* global.h */
4/* */
5/* Global variables for the da65 disassembler */
6/* */
7/* */
8/* */
9/* (C) 2000-2011, Ullrich von Bassewitz */
10/* Roemerstrasse 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 */
48extern const char* InFile; /* Name of input file */
49extern const char* OutFile; /* Name of output file */
50
51/* Default extensions */
52extern const char OutExt[]; /* Output file extension */
53extern const char CfgExt[]; /* Config file extension */
54
55/* Flags and other command line stuff */
56extern unsigned char DebugInfo; /* Add debug info to the object file */
57extern unsigned char FormFeeds; /* Add form feeds to the output? */
58extern unsigned char UseHexOffs; /* Use hexadecimal label offsets */
59extern unsigned char PassCount; /* How many passed do we do? */
60extern signed char NewlineAfterJMP;/* Add a newline after a JMP insn? */
61extern signed char NewlineAfterRTS;/* Add a newline after a RTS insn? */
62extern long StartAddr; /* Start/load address of the program */
63extern unsigned char SyncLines; /* Accept line markers in the info file */
64extern long InputOffs; /* Offset into input file */
65extern long InputSize; /* Number of bytes to read from input */
66
67/* Stuff needed by many routines */
68extern unsigned Pass; /* Disassembler pass */
69extern char Now[128]; /* Current time as string */
70
71/* Comments */
72#define MIN_COMMENTS 0
73#define MAX_COMMENTS 4
74extern unsigned Comments; /* Add which comments to the output? */
75
76/* Page formatting */
77#define MIN_PAGE_LEN 32
78#define MAX_PAGE_LEN 127
79extern unsigned PageLength; /* Length of a listing page */
80
81/* Linefeed if labels exceed this limit */
82#define MIN_LABELBREAK 1
83#define MAX_LABELBREAK 128
84extern unsigned LBreak;
85
86/* Mnemonic column */
87#define MIN_MCOL 1
88#define MAX_MCOL 127
89extern unsigned MCol;
90
91/* Argument column */
92#define MIN_ACOL 1
93#define MAX_ACOL 127
94extern unsigned ACol;
95
96/* Comment column */
97#define MIN_CCOL 1
98#define MAX_CCOL 127
99extern unsigned CCol;
100
101/* Text bytes column */
102#define MIN_TCOL 1
103#define MAX_TCOL 127
104extern unsigned TCol;
105
106/* Max. number of data bytes per line */
107#define MIN_BYTESPERLINE 1
108#define MAX_BYTESPERLINE 127
109extern unsigned BytesPerLine;
110
111
112
113/* End of global.h */
114
115#endif
116