comparison src/lwasm.h @ 54:360d53062bb9

Fixed typo in instruction table and added END directive
author lost
date Sun, 04 Jan 2009 20:38:12 +0000
parents 21ae0fab469b
children 8e32696380f3
comparison
equal deleted inserted replaced
53:493cb8ea50a0 54:360d53062bb9
90 const char *outfile; // output file 90 const char *outfile; // output file
91 const char *listfile; // output listing file 91 const char *listfile; // output listing file
92 int outformat; // output format type 92 int outformat; // output format type
93 char **filelist; // files that have been read 93 char **filelist; // files that have been read
94 int filelistlen; // number of files in the list 94 int filelistlen; // number of files in the list
95
96 int endseen; // set to true if "end" has been seen
95 } asmstate_t; 97 } asmstate_t;
96 98
97 #define PRAGMA_NOINDEX0TONONE 1 99 #define PRAGMA_NOINDEX0TONONE 1
98 100
99 #ifndef __lwasm_c_seen__ 101 #ifndef __lwasm_c_seen__