mirror of
https://github.com/cc65/cc65.git
synced 2025-01-13 09:31:53 +00:00
30594ce1f1
git-svn-id: svn://svn.cc65.org/cc65/trunk@2433 b7a2c559-68d2-44c3-8de9-860c34a00d81
90 lines
4.1 KiB
C
90 lines
4.1 KiB
C
/*****************************************************************************/
|
|
/* */
|
|
/* global.h */
|
|
/* */
|
|
/* Global variables for the da65 disassembler */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* (C) 2000-2003 Ullrich von Bassewitz */
|
|
/* Römerstrasse 52 */
|
|
/* D-70794 Filderstadt */
|
|
/* EMail: uz@cc65.org */
|
|
/* */
|
|
/* */
|
|
/* This software is provided 'as-is', without any expressed or implied */
|
|
/* warranty. In no event will the authors be held liable for any damages */
|
|
/* arising from the use of this software. */
|
|
/* */
|
|
/* Permission is granted to anyone to use this software for any purpose, */
|
|
/* including commercial applications, and to alter it and redistribute it */
|
|
/* freely, subject to the following restrictions: */
|
|
/* */
|
|
/* 1. The origin of this software must not be misrepresented; you must not */
|
|
/* claim that you wrote the original software. If you use this software */
|
|
/* in a product, an acknowledgment in the product documentation would be */
|
|
/* appreciated but is not required. */
|
|
/* 2. Altered source versions must be plainly marked as such, and must not */
|
|
/* be misrepresented as being the original software. */
|
|
/* 3. This notice may not be removed or altered from any source */
|
|
/* distribution. */
|
|
/* */
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef GLOBAL_H
|
|
#define GLOBAL_H
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
/* Data */
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
/* File stuff */
|
|
extern const char* InFile; /* Name of input file */
|
|
extern const char* OutFile; /* Name of output file */
|
|
|
|
/* Default extensions */
|
|
extern const char OutExt[]; /* Output file extension */
|
|
extern const char CfgExt[]; /* Config file extension */
|
|
|
|
/* Flags and other command line stuff */
|
|
extern unsigned char DebugInfo; /* Add debug info to the object file */
|
|
extern unsigned char FormFeeds; /* Add form feeds to the output? */
|
|
extern unsigned char UseHexOffs; /* Use hexadecimal label offsets */
|
|
extern unsigned char PassCount; /* How many passed do we do? */
|
|
extern long StartAddr; /* Start/load address of the program */
|
|
extern long InputOffs; /* Offset into input file */
|
|
extern long InputSize; /* Number of bytes to read from input */
|
|
|
|
/* Stuff needed by many routines */
|
|
extern unsigned Pass; /* Disassembler pass */
|
|
|
|
/* Comments */
|
|
#define MIN_COMMENTS 0
|
|
#define MAX_COMMENTS 4
|
|
extern unsigned Comments; /* Add which comments to the output? */
|
|
|
|
/* Page formatting */
|
|
#define MIN_PAGE_LEN 32
|
|
#define MAX_PAGE_LEN 127
|
|
extern unsigned PageLength; /* Length of a listing page */
|
|
extern unsigned MIndent; /* Mnemonic indent */
|
|
extern unsigned AIndent; /* Argument indent */
|
|
extern unsigned CIndent; /* Comment indent */
|
|
extern unsigned TIndent; /* Text bytes indent */
|
|
extern unsigned BytesPerLine; /* Max. number of data bytes per line */
|
|
|
|
|
|
|
|
/* End of global.h */
|
|
|
|
#endif
|
|
|
|
|
|
|