X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Fds390%2Fmain.h;h=e3e8c123c7236e2b8093a3f686cf4486d482aa83;hb=80972b2e54c9b88f11c27b878874fd2a6a681391;hp=65552254cc7bc707cfc07401e6f6bbb02e4e58d9;hpb=b4d69dfd516f175255aa87b18b59dcf309d98b46;p=fw%2Fsdcc diff --git a/src/ds390/main.h b/src/ds390/main.h index 65552254..e3e8c123 100644 --- a/src/ds390/main.h +++ b/src/ds390/main.h @@ -1,8 +1,19 @@ #ifndef MAIN_INCLUDE #define MAIN_INCLUDE +typedef struct asmLineNode + { + int size; + int currentDPS; + unsigned initialized:1; + bitVect *regsRead; + bitVect *regsWritten; + } +asmLineNode; + bool x_parseOptions (char **argv, int *pargc); void x_setDefaultOptions (void); void x_finaliseOptions (void); +asmLineNode * ds390newAsmLineNode (int currentDPS); #endif