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