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

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