X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=blobdiff_plain;f=src%2Fword.c;h=655e766271198eadd77b1caa4a4220c2e228b384;hp=83ae9bd52c75d2878901af4cf25bbc74db486ac8;hb=f3433b11c1e3a2ec3d6f7b332afa5cf5f69dc360;hpb=0e3065564e83037d5fbbb3e0e1595e7ce95ce8eb diff --git a/src/word.c b/src/word.c index 83ae9bd..655e766 100644 --- a/src/word.c +++ b/src/word.c @@ -14,7 +14,7 @@ WORD n2word(const char *str) } /* nが-32768〜32767の範囲にないときは、その下位16ビットを格納 */ if(n < -32768 || n > 32767) { - n = n % 0x10000; + n = n & 0xFFFF; } return (WORD)n; } @@ -23,7 +23,7 @@ WORD n2word(const char *str) WORD h2word(const char *str) { assert(*str == '#'); - WORD w = 0x0; + WORD word = 0x0; char *check; str++; if(*str == '-' || strlen(str) > 4) { @@ -31,12 +31,12 @@ WORD h2word(const char *str) return 0; } /* WORD値に変換 */ - w = (WORD)strtol(str, &check, 16); + word = (WORD)strtol(str, &check, 16); if(*check != '\0') { setcerr(115, str-1); /* not hex */ return 0x0; } - return w; + return word; } /* 10進数または16進数の文字列をWORD値に変換 */ @@ -83,3 +83,23 @@ char *word2bit(const WORD word) *p = '\0'; return bit; } + +/* WORD値を解析して表示 */ +void print_dumpword(WORD word, bool logicalmode) +{ + if(logicalmode == true) { + fprintf(stdout, "%6d", word); + } else { + fprintf(stdout, "%6d", (signed short)word); + } + fprintf(stdout, " = #%04X = %s", word, word2bit(word)); + /* 「文字の組」の符号表に記載された文字と、改行(CR)/タブを表示 */ + if(word >= 0x20 && word <= 0x7E) { + fprintf(stdout, " = \'%c\'", word); + } else if(word == 0xA) { + fprintf(stdout, " = \'\\n\'"); + } else if(word == '\t') { + fprintf(stdout, " = \'\\t\'"); + } + fprintf(stdout, "\n"); +}