Change the implementation of the file table. It may now grow to an arbitrary

size. It is also possible to search in the table by name, which will be
needed later to add line debug information.


git-svn-id: svn://svn.cc65.org/cc65/trunk@262 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2000-08-02 14:12:36 +00:00
parent 097a01094e
commit bb115c8ae2
6 changed files with 118 additions and 29 deletions

View File

@@ -38,7 +38,8 @@
#include "scanner.h"
/* common */
#include "filepos.h"
@@ -126,6 +127,7 @@ enum Errors {
ERR_COUNTER_UNDERFLOW,
ERR_UNDEFINED_LABEL,
ERR_OPEN_STMT,
ERR_FILENAME_NOT_FOUND,
ERR_COUNT /* Error count */
};