git-svn-id: svn://svn.cc65.org/cc65/trunk@1949 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2003-02-08 23:00:40 +00:00
parent 061caaca6d
commit 0346cf692e
5 changed files with 290 additions and 30 deletions

View File

@@ -48,8 +48,8 @@
/* File names */
const char* InFilename = 0; /* Name of input file */
const char* OutFilename = 0; /* Name of output file */
const char* InputName = 0; /* Name of input file */
const char* OutputName = 0; /* Name of output file */
/* Default extensions */
const char AsmExt[] = ".s"; /* Default assembler extension */
@@ -60,6 +60,12 @@ const char* DataSeg = SEGNAME_DATA; /* Name of the data segment */
const char* BssSeg = SEGNAME_BSS; /* Name of the bss segment */
const char* ZeropageSeg = SEGNAME_ZEROPAGE; /* Name of the zeropage segment */
/* Labels */
const char* CodeLabel = 0; /* Label for the code segment */
const char* DataLabel = 0; /* Label for the data segment */
const char* BssLabel = 0; /* Label for the bss segment */
const char* ZeropageLabel = 0; /* Label for the zeropage segment */
/* Flags */
unsigned char DebugInfo = 0; /* Enable debug info */