Increased the file count to 16 bits when written to the object file.
Moved the input file table to a separate module and added an AddFile() function to add files to this table. Removed the 8 bit limit for the file number in several places (the file number is still 8 bits in the file position structure). Added a pseudo instruction .dbg that will be used to add debug info from high level code to the assembler source. Added a subkey "file" to the .dbg command that allows to add a file to the file table that is later written to the object file. git-svn-id: svn://svn.cc65.org/cc65/trunk@258 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -10,9 +10,11 @@ CC = gcc
|
||||
LDFLAGS =
|
||||
|
||||
OBJS = condasm.o \
|
||||
dbginfo.o \
|
||||
ea.o \
|
||||
error.o \
|
||||
expr.o \
|
||||
filetab.o \
|
||||
fragment.o \
|
||||
global.o \
|
||||
incpath.o \
|
||||
|
||||
@@ -68,9 +68,11 @@ CCCFG = $(CCCFG) -i=..\common
|
||||
# All library OBJ files
|
||||
|
||||
OBJS = condasm.obj \
|
||||
dbginfo.obj \
|
||||
ea.obj \
|
||||
error.obj \
|
||||
expr.obj \
|
||||
filetab.obj \
|
||||
fragment.obj \
|
||||
global.obj \
|
||||
incpath.obj \
|
||||
@@ -112,9 +114,11 @@ DEBUG ALL
|
||||
OPTION QUIET
|
||||
NAME $<
|
||||
FILE condasm.obj
|
||||
FILE dbginfo.obj
|
||||
FILE ea.obj
|
||||
FILE error.obj
|
||||
FILE expr.obj
|
||||
FILE expr.obj
|
||||
FILE filetab.obj
|
||||
FILE fragment.obj
|
||||
FILE global.obj
|
||||
FILE incpath.obj
|
||||
|
||||
Reference in New Issue
Block a user