comparison lwasm/lwasm.h @ 381:e3f4aaa2a4e8

Allow FCB-like syntax after constant in FCC under m80ext This is an abomination (say what you really mean!) but for compatibilty with Macro-80C, allow handling of FCB style syntax after a string constant specified for FCC. Mostly, there are better ways to do this in new code so it is only accepted under the m80ext pragma. Thanks to Erik G <erik@6809.org> for the patch.
author William Astle <lost@l-w.ca>
date Mon, 13 Jul 2015 21:11:12 -0600
parents 17fcd0c3ee45
children 80d615a6642c
comparison
equal deleted inserted replaced
380:17fcd0c3ee45 381:e3f4aaa2a4e8
261 int dpval; // direct page value 261 int dpval; // direct page value
262 int cycle_base; // base instruction cycle count 262 int cycle_base; // base instruction cycle count
263 int cycle_adj; // cycle adjustment 263 int cycle_adj; // cycle adjustment
264 int cycle_flags; // cycle flags 264 int cycle_flags; // cycle flags
265 int genmode; // generation mode (insn_parse_gen0/8/16) 265 int genmode; // generation mode (insn_parse_gen0/8/16)
266 int fcc_extras; // fcc extra bytes
266 lwasm_error_t *err; // list of errors 267 lwasm_error_t *err; // list of errors
267 lwasm_error_t *warn; // list of errors 268 lwasm_error_t *warn; // list of errors
268 lwasm_errorcode_t err_testmode; // error code in testmode 269 lwasm_errorcode_t err_testmode; // error code in testmode
269 line_t *prev; // previous line 270 line_t *prev; // previous line
270 line_t *next; // next line 271 line_t *next; // next line