]> git.sur5r.net Git - cc65/commit
Increased the file count to 16 bits when written to the object file.
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 1 Aug 2000 21:36:45 +0000 (21:36 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 1 Aug 2000 21:36:45 +0000 (21:36 +0000)
commit51543fddb01cd8c15cc3f9d26157a76e4bb2f816
tree711d5b12552302daea29f9d125ad6b85a45db8df
parent6b3b938945ca3152f6237cb80a480c95be81a391
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
13 files changed:
src/ca65/dbginfo.c [new file with mode: 0644]
src/ca65/dbginfo.h [new file with mode: 0644]
src/ca65/error.c
src/ca65/filetab.c [new file with mode: 0644]
src/ca65/filetab.h [new file with mode: 0644]
src/ca65/listing.c
src/ca65/main.c
src/ca65/make/gcc.mak
src/ca65/make/watcom.mak
src/ca65/objcode.h
src/ca65/pseudo.c
src/ca65/scanner.c
src/ca65/scanner.h