X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=blobdiff_plain;f=include%2Fassemble.h;h=468f0826b21568f386ea5884ec8de2e195268982;hp=257fe37ba91fecd8fa18c43d58407f743e3d18b9;hb=a46594d66972fae37a609506bcf01f6b2bdc865e;hpb=1708c99d4b6263863304d48ebca3b3473d6a0112 diff --git a/include/assemble.h b/include/assemble.h index 257fe37..468f082 100644 --- a/include/assemble.h +++ b/include/assemble.h @@ -1,7 +1,16 @@ #ifndef YACASL2_ASSEMBLE_INCLUDED #define YACASL2_ASSEMBLE_INCLUDED +#include +#include +#include #include +#include +#include +#include +#include "cerr.h" +#include "cmem.h" +#include "hash.h" #include "struct.h" #include "word.h" @@ -65,9 +74,7 @@ typedef struct { */ typedef struct _LABELTAB { struct _LABELTAB *next; /**<リスト次項目へのポインタ */ - char *prog; /**<プログラム名 */ - char *label; /**<ラベル名 */ - WORD adr; /**<アドレス */ + LABELARRAY *label; /**<ラベル配列 */ } LABELTAB; /**