annotate lwasm/lwasm.h @ 347:1649bc7bda5a

Some data oriented pseudo ops added
author lost@starbug
date Sat, 27 Mar 2010 20:16:24 -0600
parents a82c55070624
children dcd2978a7d18
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
323
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
1 /*
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
2 lwasm.h
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
3
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
4 Copyright © 2010 William Astle
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
5
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
6 This file is part of LWTOOLS.
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
7
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
8 LWTOOLS is free software: you can redistribute it and/or modify it under the
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
9 terms of the GNU General Public License as published by the Free Software
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
10 Foundation, either version 3 of the License, or (at your option) any later
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
11 version.
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
12
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
13 This program is distributed in the hope that it will be useful, but WITHOUT
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
16 more details.
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
17
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
18 You should have received a copy of the GNU General Public License along with
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
19 this program. If not, see <http://www.gnu.org/licenses/>.
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
20 */
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
21
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
22 #ifndef ___lwasm_h_seen___
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
23 #define ___lwasm_h_seen___
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
24
337
04c80c51b16a Checkpoint development
lost
parents: 330
diff changeset
25 #include <lw_expr.h>
324
be63116281b0 Created lwlib folder and added first bits to it
lost
parents: 323
diff changeset
26 #include <lw_stringlist.h>
329
c15cca3ae6a2 Created first pass of input layer
lost
parents: 325
diff changeset
27 #include <lw_stack.h>
324
be63116281b0 Created lwlib folder and added first bits to it
lost
parents: 323
diff changeset
28
346
a82c55070624 Added expression parsing infrastructure and misc fixes
lost@starbug
parents: 345
diff changeset
29
a82c55070624 Added expression parsing infrastructure and misc fixes
lost@starbug
parents: 345
diff changeset
30 // these are allowed chars BELOW 0x80 for symbols
a82c55070624 Added expression parsing infrastructure and misc fixes
lost@starbug
parents: 345
diff changeset
31 // first is symbol start chars, second is anywhere in symbol
a82c55070624 Added expression parsing infrastructure and misc fixes
lost@starbug
parents: 345
diff changeset
32 #define SSYMCHARS "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz_@$"
a82c55070624 Added expression parsing infrastructure and misc fixes
lost@starbug
parents: 345
diff changeset
33 #define SYMCHARS SSYMCHARS ".?0123456789"
a82c55070624 Added expression parsing infrastructure and misc fixes
lost@starbug
parents: 345
diff changeset
34
a82c55070624 Added expression parsing infrastructure and misc fixes
lost@starbug
parents: 345
diff changeset
35 typedef struct asmstate_s asmstate_t;
a82c55070624 Added expression parsing infrastructure and misc fixes
lost@starbug
parents: 345
diff changeset
36
337
04c80c51b16a Checkpoint development
lost
parents: 330
diff changeset
37 enum
04c80c51b16a Checkpoint development
lost
parents: 330
diff changeset
38 {
346
a82c55070624 Added expression parsing infrastructure and misc fixes
lost@starbug
parents: 345
diff changeset
39 lwasm_expr_linelen = 1, // length of ref'd line
a82c55070624 Added expression parsing infrastructure and misc fixes
lost@starbug
parents: 345
diff changeset
40 lwasm_expr_lineaddr = 2, // addr of ref'd line
a82c55070624 Added expression parsing infrastructure and misc fixes
lost@starbug
parents: 345
diff changeset
41 lwasm_expr_nextbp = 3, // next branch point
a82c55070624 Added expression parsing infrastructure and misc fixes
lost@starbug
parents: 345
diff changeset
42 lwasm_expr_prevbp = 4 // previous branch point
337
04c80c51b16a Checkpoint development
lost
parents: 330
diff changeset
43 };
04c80c51b16a Checkpoint development
lost
parents: 330
diff changeset
44
323
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
45 enum lwasm_output_e
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
46 {
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
47 OUTPUT_DECB = 0, // DECB multirecord format
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
48 OUTPUT_RAW, // raw sequence of bytes
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
49 OUTPUT_OBJ, // proprietary object file format
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
50 OUTPUT_RAWREL, // raw bytes where ORG causes a SEEK in the file
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
51 OUTPUT_OS9 // os9 module target
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
52 };
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
53
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
54 enum lwasm_target_e
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
55 {
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
56 TARGET_6309 = 0, // target 6309 CPU
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
57 TARGET_6809 // target 6809 CPU (no 6309 ops)
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
58 };
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
59
325
619fd6ad4ab9 Completed command line parsing
lost
parents: 324
diff changeset
60 enum lwasm_flags_e
619fd6ad4ab9 Completed command line parsing
lost
parents: 324
diff changeset
61 {
619fd6ad4ab9 Completed command line parsing
lost
parents: 324
diff changeset
62 FLAG_NONE = 0,
619fd6ad4ab9 Completed command line parsing
lost
parents: 324
diff changeset
63 FLAG_LIST = 0x0001,
619fd6ad4ab9 Completed command line parsing
lost
parents: 324
diff changeset
64 FLAG_DEPEND = 0x0002
619fd6ad4ab9 Completed command line parsing
lost
parents: 324
diff changeset
65 };
619fd6ad4ab9 Completed command line parsing
lost
parents: 324
diff changeset
66
619fd6ad4ab9 Completed command line parsing
lost
parents: 324
diff changeset
67 enum lwasm_pragmas_e
619fd6ad4ab9 Completed command line parsing
lost
parents: 324
diff changeset
68 {
619fd6ad4ab9 Completed command line parsing
lost
parents: 324
diff changeset
69 PRAGMA_NONE = 0, // no pragmas in effect
619fd6ad4ab9 Completed command line parsing
lost
parents: 324
diff changeset
70 PRAGMA_DOLLARNOTLOCAL = 0x0001, // dollar sign does not make a symbol local
619fd6ad4ab9 Completed command line parsing
lost
parents: 324
diff changeset
71 PRAGMA_NOINDEX0TONONE = 0x0002, // do not change implicit 0,R to ,R
619fd6ad4ab9 Completed command line parsing
lost
parents: 324
diff changeset
72 PRAGMA_UNDEFEXTERN = 0x0004, // undefined symbols are considered to be external
619fd6ad4ab9 Completed command line parsing
lost
parents: 324
diff changeset
73 PRAGMA_CESCAPES = 0x0008, // allow C style escapes in fcc, fcs, fcn, etc.
619fd6ad4ab9 Completed command line parsing
lost
parents: 324
diff changeset
74 PRAGMA_IMPORTUNDEFEXPORT = 0x0010 // imports symbol if undefined upon export
619fd6ad4ab9 Completed command line parsing
lost
parents: 324
diff changeset
75 };
619fd6ad4ab9 Completed command line parsing
lost
parents: 324
diff changeset
76
344
0215a0fbf61b Added assembly error system and additional checks for symbol syntax
lost@starbug
parents: 342
diff changeset
77 typedef struct lwasm_error_s lwasm_error_t;
0215a0fbf61b Added assembly error system and additional checks for symbol syntax
lost@starbug
parents: 342
diff changeset
78 struct lwasm_error_s
0215a0fbf61b Added assembly error system and additional checks for symbol syntax
lost@starbug
parents: 342
diff changeset
79 {
0215a0fbf61b Added assembly error system and additional checks for symbol syntax
lost@starbug
parents: 342
diff changeset
80 char *mess; // actual error message
0215a0fbf61b Added assembly error system and additional checks for symbol syntax
lost@starbug
parents: 342
diff changeset
81 lwasm_error_t *next; // ptr to next error
0215a0fbf61b Added assembly error system and additional checks for symbol syntax
lost@starbug
parents: 342
diff changeset
82 };
0215a0fbf61b Added assembly error system and additional checks for symbol syntax
lost@starbug
parents: 342
diff changeset
83
347
1649bc7bda5a Some data oriented pseudo ops added
lost@starbug
parents: 346
diff changeset
84 struct line_expr_s
1649bc7bda5a Some data oriented pseudo ops added
lost@starbug
parents: 346
diff changeset
85 {
1649bc7bda5a Some data oriented pseudo ops added
lost@starbug
parents: 346
diff changeset
86 lw_expr_t expr;
1649bc7bda5a Some data oriented pseudo ops added
lost@starbug
parents: 346
diff changeset
87 int id;
1649bc7bda5a Some data oriented pseudo ops added
lost@starbug
parents: 346
diff changeset
88 struct line_expr_s *next;
1649bc7bda5a Some data oriented pseudo ops added
lost@starbug
parents: 346
diff changeset
89 };
1649bc7bda5a Some data oriented pseudo ops added
lost@starbug
parents: 346
diff changeset
90
337
04c80c51b16a Checkpoint development
lost
parents: 330
diff changeset
91 typedef struct line_s line_t;
04c80c51b16a Checkpoint development
lost
parents: 330
diff changeset
92 struct line_s
04c80c51b16a Checkpoint development
lost
parents: 330
diff changeset
93 {
04c80c51b16a Checkpoint development
lost
parents: 330
diff changeset
94 lw_expr_t addr; // assembly address of the line
04c80c51b16a Checkpoint development
lost
parents: 330
diff changeset
95 int len; // the "size" this line occupies (address space wise) (-1 if unknown)
04c80c51b16a Checkpoint development
lost
parents: 330
diff changeset
96 int insn; // number of insn in insn table
342
7b4123dce741 Added basic symbol registration
lost@starbug
parents: 340
diff changeset
97 int symset; // set if the line symbol was consumed by the instruction
340
1a6fc6ebb31c Checkpoint
lost
parents: 337
diff changeset
98 char *sym; // symbol, if any, on the line
346
a82c55070624 Added expression parsing infrastructure and misc fixes
lost@starbug
parents: 345
diff changeset
99 unsigned char *output; // output bytes
a82c55070624 Added expression parsing infrastructure and misc fixes
lost@starbug
parents: 345
diff changeset
100 int outputl; // size of output
a82c55070624 Added expression parsing infrastructure and misc fixes
lost@starbug
parents: 345
diff changeset
101 int outputbl; // size of output buffer
344
0215a0fbf61b Added assembly error system and additional checks for symbol syntax
lost@starbug
parents: 342
diff changeset
102 lwasm_error_t *err; // list of errors
0215a0fbf61b Added assembly error system and additional checks for symbol syntax
lost@starbug
parents: 342
diff changeset
103 line_t *prev; // previous line
0215a0fbf61b Added assembly error system and additional checks for symbol syntax
lost@starbug
parents: 342
diff changeset
104 line_t *next; // next line
347
1649bc7bda5a Some data oriented pseudo ops added
lost@starbug
parents: 346
diff changeset
105
1649bc7bda5a Some data oriented pseudo ops added
lost@starbug
parents: 346
diff changeset
106 struct line_expr_s *exprs; // expressions used during parsing
346
a82c55070624 Added expression parsing infrastructure and misc fixes
lost@starbug
parents: 345
diff changeset
107 asmstate_t *as; // assembler state data ptr
337
04c80c51b16a Checkpoint development
lost
parents: 330
diff changeset
108 };
04c80c51b16a Checkpoint development
lost
parents: 330
diff changeset
109
342
7b4123dce741 Added basic symbol registration
lost@starbug
parents: 340
diff changeset
110 enum
7b4123dce741 Added basic symbol registration
lost@starbug
parents: 340
diff changeset
111 {
7b4123dce741 Added basic symbol registration
lost@starbug
parents: 340
diff changeset
112 symbol_flag_set = 1, // symbol was used with "set"
7b4123dce741 Added basic symbol registration
lost@starbug
parents: 340
diff changeset
113 symbol_flag_none = 0 // no flags
7b4123dce741 Added basic symbol registration
lost@starbug
parents: 340
diff changeset
114 };
7b4123dce741 Added basic symbol registration
lost@starbug
parents: 340
diff changeset
115
7b4123dce741 Added basic symbol registration
lost@starbug
parents: 340
diff changeset
116 struct symtabe
7b4123dce741 Added basic symbol registration
lost@starbug
parents: 340
diff changeset
117 {
7b4123dce741 Added basic symbol registration
lost@starbug
parents: 340
diff changeset
118 char *symbol; // the name of the symbol
7b4123dce741 Added basic symbol registration
lost@starbug
parents: 340
diff changeset
119 int context; // symbol context (-1 for global)
7b4123dce741 Added basic symbol registration
lost@starbug
parents: 340
diff changeset
120 int version; // version of the symbol (for "set")
7b4123dce741 Added basic symbol registration
lost@starbug
parents: 340
diff changeset
121 int flags; // flags for the symbol
7b4123dce741 Added basic symbol registration
lost@starbug
parents: 340
diff changeset
122 lw_expr_t value; // symbol value
7b4123dce741 Added basic symbol registration
lost@starbug
parents: 340
diff changeset
123 struct symtabe *next; // next symbol in the table
7b4123dce741 Added basic symbol registration
lost@starbug
parents: 340
diff changeset
124 };
7b4123dce741 Added basic symbol registration
lost@starbug
parents: 340
diff changeset
125
7b4123dce741 Added basic symbol registration
lost@starbug
parents: 340
diff changeset
126 typedef struct
7b4123dce741 Added basic symbol registration
lost@starbug
parents: 340
diff changeset
127 {
7b4123dce741 Added basic symbol registration
lost@starbug
parents: 340
diff changeset
128 struct symtabe *head; // start of symbol table
7b4123dce741 Added basic symbol registration
lost@starbug
parents: 340
diff changeset
129 } symtab_t;
7b4123dce741 Added basic symbol registration
lost@starbug
parents: 340
diff changeset
130
345
7416c3f9c321 Basic macro processor ported forward; added context break handling for local symbols
lost@starbug
parents: 344
diff changeset
131 typedef struct macrotab_s macrotab_t;
7416c3f9c321 Basic macro processor ported forward; added context break handling for local symbols
lost@starbug
parents: 344
diff changeset
132 struct macrotab_s
7416c3f9c321 Basic macro processor ported forward; added context break handling for local symbols
lost@starbug
parents: 344
diff changeset
133 {
7416c3f9c321 Basic macro processor ported forward; added context break handling for local symbols
lost@starbug
parents: 344
diff changeset
134 char *name; // name of macro
7416c3f9c321 Basic macro processor ported forward; added context break handling for local symbols
lost@starbug
parents: 344
diff changeset
135 char **lines; // macro lines
7416c3f9c321 Basic macro processor ported forward; added context break handling for local symbols
lost@starbug
parents: 344
diff changeset
136 int numlines; // number lines in macro
7416c3f9c321 Basic macro processor ported forward; added context break handling for local symbols
lost@starbug
parents: 344
diff changeset
137 macrotab_t *next; // next macro in list
7416c3f9c321 Basic macro processor ported forward; added context break handling for local symbols
lost@starbug
parents: 344
diff changeset
138 };
7416c3f9c321 Basic macro processor ported forward; added context break handling for local symbols
lost@starbug
parents: 344
diff changeset
139
346
a82c55070624 Added expression parsing infrastructure and misc fixes
lost@starbug
parents: 345
diff changeset
140 struct asmstate_s
323
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
141 {
324
be63116281b0 Created lwlib folder and added first bits to it
lost
parents: 323
diff changeset
142 int output_format; // output format
be63116281b0 Created lwlib folder and added first bits to it
lost
parents: 323
diff changeset
143 int target; // assembly target
be63116281b0 Created lwlib folder and added first bits to it
lost
parents: 323
diff changeset
144 int debug_level; // level of debugging requested
325
619fd6ad4ab9 Completed command line parsing
lost
parents: 324
diff changeset
145 int flags; // assembly flags
619fd6ad4ab9 Completed command line parsing
lost
parents: 324
diff changeset
146 int pragmas; // pragmas currently in effect
344
0215a0fbf61b Added assembly error system and additional checks for symbol syntax
lost@starbug
parents: 342
diff changeset
147 int errorcount; // number of errors encountered
345
7416c3f9c321 Basic macro processor ported forward; added context break handling for local symbols
lost@starbug
parents: 344
diff changeset
148 int inmacro; // are we in a macro?
7416c3f9c321 Basic macro processor ported forward; added context break handling for local symbols
lost@starbug
parents: 344
diff changeset
149 int skipcond; // skipping a condition?
7416c3f9c321 Basic macro processor ported forward; added context break handling for local symbols
lost@starbug
parents: 344
diff changeset
150 int skipmacro; // are we skipping in a macro?
347
1649bc7bda5a Some data oriented pseudo ops added
lost@starbug
parents: 346
diff changeset
151 int endseen; // have we seen an "end" pseudo?
1649bc7bda5a Some data oriented pseudo ops added
lost@starbug
parents: 346
diff changeset
152 int execaddr; // address from "end"
325
619fd6ad4ab9 Completed command line parsing
lost
parents: 324
diff changeset
153
337
04c80c51b16a Checkpoint development
lost
parents: 330
diff changeset
154 line_t *line_head; // start of lines list
04c80c51b16a Checkpoint development
lost
parents: 330
diff changeset
155 line_t *line_tail; // tail of lines list
346
a82c55070624 Added expression parsing infrastructure and misc fixes
lost@starbug
parents: 345
diff changeset
156
a82c55070624 Added expression parsing infrastructure and misc fixes
lost@starbug
parents: 345
diff changeset
157 line_t *cl; // current line pointer
342
7b4123dce741 Added basic symbol registration
lost@starbug
parents: 340
diff changeset
158
7b4123dce741 Added basic symbol registration
lost@starbug
parents: 340
diff changeset
159 int context; // the current "context"
345
7416c3f9c321 Basic macro processor ported forward; added context break handling for local symbols
lost@starbug
parents: 344
diff changeset
160 int nextcontext; // the next available context
7416c3f9c321 Basic macro processor ported forward; added context break handling for local symbols
lost@starbug
parents: 344
diff changeset
161
342
7b4123dce741 Added basic symbol registration
lost@starbug
parents: 340
diff changeset
162 symtab_t symtab; // meta data for the symbol table
345
7416c3f9c321 Basic macro processor ported forward; added context break handling for local symbols
lost@starbug
parents: 344
diff changeset
163 macrotab_t *macros; // macro table
337
04c80c51b16a Checkpoint development
lost
parents: 330
diff changeset
164
325
619fd6ad4ab9 Completed command line parsing
lost
parents: 324
diff changeset
165 char *list_file; // name of file to list to
619fd6ad4ab9 Completed command line parsing
lost
parents: 324
diff changeset
166 char *output_file; // output file name
324
be63116281b0 Created lwlib folder and added first bits to it
lost
parents: 323
diff changeset
167 lw_stringlist_t input_files; // files to assemble
330
81c005b82775 More tinkering with input subsystem
lost
parents: 329
diff changeset
168 void *input_data; // opaque data used by the input system
325
619fd6ad4ab9 Completed command line parsing
lost
parents: 324
diff changeset
169 lw_stringlist_t include_list; // include paths
329
c15cca3ae6a2 Created first pass of input layer
lost
parents: 325
diff changeset
170 lw_stack_t file_dir; // stack of the "current file" dir
346
a82c55070624 Added expression parsing infrastructure and misc fixes
lost@starbug
parents: 345
diff changeset
171 };
323
473ed9b353eb Started framework for lwasm binary
lost
parents:
diff changeset
172
342
7b4123dce741 Added basic symbol registration
lost@starbug
parents: 340
diff changeset
173 #ifndef ___symbol_c_seen___
7b4123dce741 Added basic symbol registration
lost@starbug
parents: 340
diff changeset
174
344
0215a0fbf61b Added assembly error system and additional checks for symbol syntax
lost@starbug
parents: 342
diff changeset
175 extern struct symtabe *register_symbol(asmstate_t *as, line_t *cl, char *sym, lw_expr_t value, int flags);
0215a0fbf61b Added assembly error system and additional checks for symbol syntax
lost@starbug
parents: 342
diff changeset
176 extern struct symtabe *lookup_symbol(asmstate_t *as, line_t *cl, char *sym, int context, int version);
342
7b4123dce741 Added basic symbol registration
lost@starbug
parents: 340
diff changeset
177
7b4123dce741 Added basic symbol registration
lost@starbug
parents: 340
diff changeset
178 #endif
7b4123dce741 Added basic symbol registration
lost@starbug
parents: 340
diff changeset
179
344
0215a0fbf61b Added assembly error system and additional checks for symbol syntax
lost@starbug
parents: 342
diff changeset
180 #ifndef ___lwasm_c_seen___
0215a0fbf61b Added assembly error system and additional checks for symbol syntax
lost@starbug
parents: 342
diff changeset
181
0215a0fbf61b Added assembly error system and additional checks for symbol syntax
lost@starbug
parents: 342
diff changeset
182 extern void lwasm_register_error(asmstate_t *as, line_t *cl, const char *msg, ...);
345
7416c3f9c321 Basic macro processor ported forward; added context break handling for local symbols
lost@starbug
parents: 344
diff changeset
183 extern int lwasm_next_context(asmstate_t *as);
346
a82c55070624 Added expression parsing infrastructure and misc fixes
lost@starbug
parents: 345
diff changeset
184 extern void lwasm_emit(line_t *cl, int byte);
a82c55070624 Added expression parsing infrastructure and misc fixes
lost@starbug
parents: 345
diff changeset
185 extern void lwasm_emitop(line_t *cl, int opc);
344
0215a0fbf61b Added assembly error system and additional checks for symbol syntax
lost@starbug
parents: 342
diff changeset
186
347
1649bc7bda5a Some data oriented pseudo ops added
lost@starbug
parents: 346
diff changeset
187 extern void lwasm_save_expr(line_t *cl, int id, lw_expr_t expr);
1649bc7bda5a Some data oriented pseudo ops added
lost@starbug
parents: 346
diff changeset
188 extern lw_expr_t lwasm_fetch_expr(line_t *cl, int id);
1649bc7bda5a Some data oriented pseudo ops added
lost@starbug
parents: 346
diff changeset
189 extern lw_expr_t lwasm_parse_expr(asmstate_t *as, char **p);
1649bc7bda5a Some data oriented pseudo ops added
lost@starbug
parents: 346
diff changeset
190 extern int lwasm_emitexpr(line_t *cl, lw_expr_t expr, int s);
1649bc7bda5a Some data oriented pseudo ops added
lost@starbug
parents: 346
diff changeset
191
1649bc7bda5a Some data oriented pseudo ops added
lost@starbug
parents: 346
diff changeset
192 extern void skip_operand(char **p);
1649bc7bda5a Some data oriented pseudo ops added
lost@starbug
parents: 346
diff changeset
193
344
0215a0fbf61b Added assembly error system and additional checks for symbol syntax
lost@starbug
parents: 342
diff changeset
194 #endif
0215a0fbf61b Added assembly error system and additional checks for symbol syntax
lost@starbug
parents: 342
diff changeset
195
346
a82c55070624 Added expression parsing infrastructure and misc fixes
lost@starbug
parents: 345
diff changeset
196 #define OPLEN(op) (((op)>0xFF)?2:1)
344
0215a0fbf61b Added assembly error system and additional checks for symbol syntax
lost@starbug
parents: 342
diff changeset
197
324
be63116281b0 Created lwlib folder and added first bits to it
lost
parents: 323
diff changeset
198 #endif /* ___lwasm_h_seen___ */