X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=blobdiff_plain;f=include%2Fword.h;h=c1efb67ebe3d294ad8353efc39543f8bcf9114ab;hp=24dea808455398312b4bf0e8ef873b8c6c7f095a;hb=755c5127855b776d1a4260f05afc95640045f29d;hpb=0e3065564e83037d5fbbb3e0e1595e7ce95ce8eb diff --git a/include/word.h b/include/word.h index 24dea80..c1efb67 100644 --- a/include/word.h +++ b/include/word.h @@ -1,12 +1,18 @@ #ifndef YACASL2_WORD_H_INCLUDED #define YACASL2_WORD_H_INCLUDED +#include #include #include #include #include +#include + #include "cerr.h" +/* wordのエラー定義 */ +bool addcerrlist_word(); + /* WORD - 16ビットデータ型 */ typedef unsigned short WORD; @@ -25,4 +31,7 @@ char *word2n(WORD word); /* WORD値を2進数の文字列に変換 */ char *word2bit(const WORD word); +/* WORD値を解析して表示 */ +void print_dumpword(WORD word, bool logicalmode); + #endif