]> git.sur5r.net Git - cc65/blobdiff - src/ca65/scanner.h
Added condes tables to c64 config
[cc65] / src / ca65 / scanner.h
index 952c6bab0da5d9e6fa3dc5f2a93fca30dad58c4c..f6fddc58810a36454fbd97592e8914ca7c9af63a 100644 (file)
@@ -120,14 +120,18 @@ enum Token {
     TOK_BYTE,
     TOK_CASE,
     TOK_CODE,
-    TOK_CONCAT,
+    TOK_CONCAT,            
+    TOK_CONDES,
     TOK_CONST,
+    TOK_CONSTRUCTOR,
     TOK_CPU,
     TOK_DATA,
+    TOK_DBG,
     TOK_DBYT,
     TOK_DEBUGINFO,
     TOK_DEFINE,
     TOK_DEFINED,
+    TOK_DESTRUCTOR,
     TOK_DWORD,
     TOK_ELSE,
     TOK_ELSEIF,
@@ -143,6 +147,7 @@ enum Token {
     TOK_FARADDR,
     TOK_FEATURE,
     TOK_FILEOPT,
+    TOK_FORCEWORD,
     TOK_GLOBAL,
     TOK_GLOBALZP,
     TOK_I16,
@@ -225,9 +230,6 @@ extern int          ForcedEnd;              /* Force end of assembly */
 
 
 
-const char* GetFileName (unsigned char Name);
-/* Get the name of a file where the name index is known */
-
 void NewInputFile (const char* Name);
 /* Open a new input file */
 
@@ -237,6 +239,9 @@ void DoneInputFile (void);
 void NewInputData (const char* Data, int Malloced);
 /* Add a chunk of input data to the input stream */
 
+void LocaseSVal (void);
+/* Make SVal lower case */
+
 void UpcaseSVal (void);
 /* Make SVal upper case */
 
@@ -256,9 +261,6 @@ int GetSubKey (const char** Keys, unsigned Count);
  * or -1 if the keyword was not found.
  */
 
-void WriteFiles (void);
-/* Write the list of input files to the object file */
-
 void InitScanner (const char* InFile);
 /* Initialize the scanner, open the given input file */