comparison lwasm/instab.h @ 254:c7a41b4c89b3 2.x

Added struct support to LWASM
author lost
date Sat, 19 Dec 2009 06:38:43 +0000
parents 0df2a39a268c
children
comparison
equal deleted inserted replaced
253:c537a3a723fc 254:c7a41b4c89b3
33 void (*fn)(asmstate_t *as, lwasm_line_t *l, char **optr, int opnum); 33 void (*fn)(asmstate_t *as, lwasm_line_t *l, char **optr, int opnum);
34 int iscond; /* set if this should be dispatched even if skipping a condition/macro */ 34 int iscond; /* set if this should be dispatched even if skipping a condition/macro */
35 int endm; /* end of macro? */ 35 int endm; /* end of macro? */
36 int setsym; /* does this set a symbol address? EQU, SET */ 36 int setsym; /* does this set a symbol address? EQU, SET */
37 int is6309; /* is this 6309 only? */ 37 int is6309; /* is this 6309 only? */
38 int isreserve; /* reserves space but does not output anything */
38 } instab_t; 39 } instab_t;
39 40
40 #define OPFUNC(fn) void (fn)(asmstate_t *as, lwasm_line_t *l, char **p, int opnum) 41 #define OPFUNC(fn) void (fn)(asmstate_t *as, lwasm_line_t *l, char **p, int opnum)
41 42
42 #ifndef __instab_c_seen__ 43 #ifndef __instab_c_seen__