]> Shamusworld >> Repos - rmac/blob - token.h
6502 mode: fix clearing of its RAM space with each .6502 invocation. Also fixed chptr...
[rmac] / token.h
1 //
2 // RMAC - Reboot's Macro Assembler for the Atari Jaguar Console System
3 // TOKEN.H - Token Handling
4 // Copyright (C) 199x Landon Dyer, 2017 Reboot and Friends
5 // RMAC derived from MADMAC v1.07 Written by Landon Dyer, 1986
6 // Source utilised with the kind permission of Landon Dyer
7 //
8
9 #ifndef __TOKEN_H__
10 #define __TOKEN_H__
11
12 #include "rmac.h"
13
14 // Include Files and Macros
15 #define SRC_IFILE       0                                       // Input source is IFILE
16 #define SRC_IMACRO      1                                       // Input source is IMACRO
17 #define SRC_IREPT       2                                       // Input source is IREPT
18
19 // Macros
20 #define INOBJ           struct _inobj
21 #define IUNION          union _iunion
22 #define IFILE           struct _incldfile
23 #define IMACRO          struct _imacro
24 #define IREPT           struct _irept
25 #define IFENT           struct _ifent
26
27 // Tunable definitions
28 #define LNSIZ           256                                     // Maximum size of a line of text
29 #define TOKBUFSIZE      400                                     // Size of token-line buffer
30 #define QUANTUM         4096L                           // # bytes to eat at a time from a file
31 #define LNBUFSIZ        (QUANTUM*2)                     // Size of file's buffer
32 #define KWSIZE          7                                       // Maximum size of keyword in kwtab.h
33
34 // (Normally) non-printable tokens
35 #define COLON           ':'                                     // : (grumble: GNUmacs hates ':')
36 #define CONST           'a'                                     // CONST <value>
37 #define ACONST          'A'                                     // ACONST <value> <attrib>
38 #define STRING          'b'                                     // STRING <address>
39 #define SYMBOL          'c'                                     // SYMBOL <address>
40 #define EOL             'e'                                     // End of line
41 #define TKEOF           'f'                                     // End of file (or macro)
42 #define DEQUALS         'g'                                     // ==
43 #define SET             149                                     // Set
44 #define REG             'R'                                     // Reg
45 #define DCOLON          'h'                                     // ::
46 #define GE              'i'                                     // >=
47 #define LE              'j'                                     // <=
48 #define NE              'k'                                     // <> or !=
49 #define SHR             'l'                                     // >>
50 #define SHL             'm'                                     // <<
51 #define UNMINUS         'n'                                     // Unary '-'
52 #define DOTB            'B'                                     // .b or .B or .s or .S
53 #define DOTW            'W'                                     // .w or .W
54 #define DOTL            'L'                                     // .l or .L
55 #define DOTI            'I'                                     // .l or .L
56 #define ENDEXPR         'E'                                     // End of expression
57
58 // ^^ operators
59 #define CR_DEFINED      'p'                                     // ^^defined - is symbol defined?
60 #define CR_REFERENCED   'q'                                     // ^^referenced - was symbol referenced?
61 #define CR_STREQ        'v'                                     // ^^streq - compare two strings
62 #define CR_MACDEF       'w'                                     // ^^macdef - is macro defined?
63 #define CR_TIME         'x'                                     // ^^time - DOS format time
64 #define CR_DATE         'y'                                     // ^^date - DOS format date
65 #define CR_ABSCOUNT     'z'                                     // ^^abscount - count the number of bytes defined in curent .abs section
66
67 // Character Attributes
68 #define ILLEG           0                                       // Illegal character (unused)
69 #define DIGIT           1                                       // 0-9
70 #define HDIGIT          2                                       // A-F, a-f
71 #define STSYM           4                                       // A-Z, a-z, _~.
72 #define CTSYM           8                                       // A-Z, a-z, 0-9, _~$?
73 #define SELF            16                                      // Single-character tokens: ( ) [ ] etc
74 #define WHITE           32                                      // Whitespace (space, tab, etc.)
75 #define MULTX           64                                      // Multiple-character tokens
76 #define DOT             128                                     // [bwlsBWSL] for what follows a `.'
77
78 // "special" string types
79 #define NORMAL          0                   // Standard for PC/ST/whatever
80 #define A8INT           1                   // Atari 800 ATASCII translation
81 #define PETSCII         2                   // lol
82 #define ORICSCII        3                   // lolol
83
84 // Conditional assembly structures
85 IFENT {
86         IFENT * if_prev;                // Ptr prev .if state block (or NULL)
87         WORD if_state;                  // 0:enabled, 1:disabled
88 };
89
90 // Pointer to IFILE or IMACRO
91 IUNION {
92         IFILE * ifile;
93         IMACRO * imacro;
94         IREPT * irept;
95 };
96
97 // Ptr to IFILEs, IMACROs, and so on; back-ptr to previous input objects
98 INOBJ {
99         WORD in_type;                   // 0=IFILE, 1=IMACRO ...
100         IFENT * in_ifent;               // Pointer to .if context on entry
101         INOBJ * in_link;                // Pointer to previous INOBJ
102         TOKEN * in_otok;                // Old `tok' value
103         TOKEN * in_etok;                // Old `etok' value
104         IUNION inobj;                   // IFILE or IMACRO ...
105 };
106
107 // Information about a file
108 IFILE {
109         IFILE * if_link;                // Pointer to ancient IFILEs
110         char * ifoldfname;              // Old file's name
111         int ifoldlineno;                // Old line number
112         int ifind;                              // Position in file buffer
113         int ifcnt;                              // #chars left in file buffer
114         int ifhandle;                   // File's descriptor
115         WORD ifno;                              // File number
116         char ifbuf[LNBUFSIZ];   // Line buffer
117 };
118
119 #define TOKENSTREAM struct _tokenstream
120 TOKENSTREAM {
121         TOKEN token[32];                // 32 ought to be enough for anybody (including XiA!)
122         char * string[32];              // same for attached strings
123 };
124
125 // Information about a macro invocation
126 IMACRO {
127         IMACRO * im_link;               // Pointer to ancient IMACROs
128         struct LineList * im_nextln;    // Next line to include
129         WORD im_nargs;                  // # of arguments supplied on invocation
130         WORD im_siz;                    // Size suffix supplied on invocation
131         LONG im_olduniq;                // Old value of 'macuniq'
132         SYM * im_macro;                 // Pointer to macro we're in
133         char im_lnbuf[LNSIZ];   // Line buffer
134         uint32_t argBase;               // Base in argPtrs[] for current macro
135         TOKENSTREAM argument[20];       // Assume no more than 20 arguments in an invocation
136 };
137
138 // Information about a .rept invocation
139 IREPT {
140         LONG * ir_firstln;              // Pointer to first line
141         LONG * ir_nextln;               // Pointer to next line
142         VALUE ir_count;                 // Repeat count (decrements)
143 };
144
145 // Exported variables
146 extern int lnsave;
147 extern int curlineno;
148 extern char * curfname;
149 extern WORD cfileno;
150 extern TOKEN * tok;
151 extern char lnbuf[];
152 extern char lntag;
153 extern char tolowertab[];
154 extern INOBJ * cur_inobj;
155 extern int mjump_align;
156 extern char * string[];
157 extern int stringtype;
158
159 // Exported functions
160 int include(int, char *);
161 void InitTokenizer(void);
162 void SetFilenameForErrorReporting(void);
163 int TokenizeLine(void);
164 int fpop(void);
165 int d_goto(WORD);
166 INOBJ * a_inobj(int);
167 void DumpTokenBuffer(void);
168
169 #endif // __TOKEN_H__
170