]> git.sur5r.net Git - cc65/blob - src/ca65/scanner.h
17492766e49062e4fa2066c34925f3b9937cd8e9
[cc65] / src / ca65 / scanner.h
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                 scanner.h                                 */
4 /*                                                                           */
5 /*                  The scanner for the ca65 macroassembler                  */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 1998-2007 Ullrich von Bassewitz                                       */
10 /*               Roemerstrasse 52                                            */
11 /*               D-70794 Filderstadt                                         */
12 /* EMail:        uz@cc65.org                                                 */
13 /*                                                                           */
14 /*                                                                           */
15 /* This software is provided 'as-is', without any expressed or implied       */
16 /* warranty.  In no event will the authors be held liable for any damages    */
17 /* arising from the use of this software.                                    */
18 /*                                                                           */
19 /* Permission is granted to anyone to use this software for any purpose,     */
20 /* including commercial applications, and to alter it and redistribute it    */
21 /* freely, subject to the following restrictions:                            */
22 /*                                                                           */
23 /* 1. The origin of this software must not be misrepresented; you must not   */
24 /*    claim that you wrote the original software. If you use this software   */
25 /*    in a product, an acknowledgment in the product documentation would be  */
26 /*    appreciated but is not required.                                       */
27 /* 2. Altered source versions must be plainly marked as such, and must not   */
28 /*    be misrepresented as being the original software.                      */
29 /* 3. This notice may not be removed or altered from any source              */
30 /*    distribution.                                                          */
31 /*                                                                           */
32 /*****************************************************************************/
33
34
35
36 #ifndef SCANNER_H
37 #define SCANNER_H
38
39
40
41 /* common */
42 #include "filepos.h"
43 #include "strbuf.h"
44
45 /* ca65 */
46 #include "token.h"
47
48
49
50 /*****************************************************************************/
51 /*                                   Data                                    */
52 /*****************************************************************************/
53
54
55
56 /* Scanner variables */
57 #define MAX_INPUT_FILES 254             /* No more than this files total */
58 #define MAX_STR_LEN     255             /* Maximum length of any string */
59 extern Token Tok;                       /* Current token */
60 extern int WS;                          /* Flag: Whitespace before token */
61 extern long IVal;                       /* Integer token attribute */
62 extern StrBuf SVal;                     /* String token attribute */
63
64 extern FilePos  CurPos;                 /* Name and position in file */
65 extern int      ForcedEnd;              /* Force end of assembly */
66
67
68
69 /*****************************************************************************/
70 /*                                   Code                                    */
71 /*****************************************************************************/
72
73
74
75 int IsIdChar (int C);
76 /* Return true if the character is a valid character for an identifier */
77
78 int IsIdStart (int C);
79 /* Return true if the character may start an identifier */
80
81 void NewInputFile (const char* Name);
82 /* Open a new input file */
83
84 void NewInputData (char* Text, int Malloced);
85 /* Add a chunk of input data to the input stream */
86
87 void LocaseSVal (void);
88 /* Make SVal lower case */
89
90 void UpcaseSVal (void);
91 /* Make SVal upper case */
92
93 void NextRawTok (void);
94 /* Read the next raw token from the input stream */
95
96 int GetSubKey (const char** Keys, unsigned Count);
97 /* Search for a subkey in a table of keywords. The current token must be an
98  * identifier and all keys must be in upper case. The identifier will be
99  * uppercased in the process. The function returns the index of the keyword,
100  * or -1 if the keyword was not found.
101  */
102
103 unsigned char ParseAddrSize (void);
104 /* Check if the next token is a keyword that denotes an address size specifier.
105  * If so, return the corresponding address size constant, otherwise output an
106  * error message and return ADDR_SIZE_DEFAULT.
107  */
108
109 void InitScanner (const char* InFile);
110 /* Initialize the scanner, open the given input file */
111
112 void DoneScanner (void);
113 /* Release scanner resources */
114
115
116
117 /* End of scanner.h */
118
119 #endif
120
121
122
123