]> git.sur5r.net Git - cc65/blob - src/da65/global.h
add gotox, gotoy, and gotoxy
[cc65] / src / da65 / global.h
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 */
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 signed char      NewlineAfterJMP;/* Add a newline after a JMP insn? */
61 extern signed char      NewlineAfterRTS;/* Add a newline after a RTS insn? */
62 extern long             StartAddr;      /* Start/load address of the program */
63 extern long             InputOffs;      /* Offset into input file */
64 extern long             InputSize;      /* Number of bytes to read from input */
65
66 /* Stuff needed by many routines */
67 extern unsigned         Pass;           /* Disassembler pass */
68 extern char             Now[128];       /* Current time as string */
69
70 /* Comments */
71 #define MIN_COMMENTS    0
72 #define MAX_COMMENTS    4
73 extern unsigned         Comments;       /* Add which comments to the output? */
74
75 /* Page formatting */
76 #define MIN_PAGE_LEN    32
77 #define MAX_PAGE_LEN    127
78 extern unsigned         PageLength;     /* Length of a listing page */
79
80 /* Linefeed if labels exceed this limit */
81 #define MIN_LABELBREAK  1
82 #define MAX_LABELBREAK  128
83 extern unsigned         LBreak;
84
85 /* Mnemonic column */
86 #define MIN_MCOL        1
87 #define MAX_MCOL        127
88 extern unsigned         MCol;
89
90 /* Argument column */
91 #define MIN_ACOL        1
92 #define MAX_ACOL        127
93 extern unsigned         ACol;
94
95 /* Comment column */
96 #define MIN_CCOL        1
97 #define MAX_CCOL        127
98 extern unsigned         CCol;
99
100 /* Text bytes column */
101 #define MIN_TCOL        1
102 #define MAX_TCOL        127
103 extern unsigned         TCol;
104
105 /* Max. number of data bytes per line */
106 #define MIN_BYTESPERLINE        1
107 #define MAX_BYTESPERLINE        127
108 extern unsigned         BytesPerLine;
109
110
111
112 /* End of global.h */
113
114 #endif
115
116
117