Imported Upstream version 2.9.0
[debian/cc1111] / src / mcs51 / main.h
1 #ifndef MAIN_INCLUDE
2 #define MAIN_INCLUDE
3
4 typedef struct asmLineNode
5   {
6     int size;
7     bitVect *regsRead;
8     bitVect *regsWritten;
9   }
10 asmLineNode;
11
12 bool x_parseOptions (char **argv, int *pargc);
13 void x_setDefaultOptions (void);
14 void x_finaliseOptions (void);
15
16 #endif