Added a .IDENT function

git-svn-id: svn://svn.cc65.org/cc65/trunk@3506 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2005-05-09 18:57:03 +00:00
parent 480b61e0bf
commit 76d94bc8d9
4 changed files with 97 additions and 3 deletions

View File

@@ -6,7 +6,7 @@
/* */
/* */
/* */
/* (C) 1998-2004 Ullrich von Bassewitz */
/* (C) 1998-2005 Ullrich von Bassewitz */
/* R<>merstra<72>e 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
@@ -174,6 +174,7 @@ enum Token {
TOK_HIWORD,
TOK_I16,
TOK_I8,
TOK_MAKEIDENT,
TOK_IF,
TOK_IFBLANK,
TOK_IFCONST,
@@ -267,6 +268,12 @@ extern int ForcedEnd; /* Force end of assembly */
int IsIdChar (int C);
/* Return true if the character is a valid character for an identifier */
int IsIdStart (int C);
/* Return true if the character may start an identifier */
void NewInputFile (const char* Name);
/* Open a new input file */