5 { 114, "not integer" },
7 { 116, "out of hex range" },
10 bool addcerrlist_word()
12 return addcerrlist(ARRAYSIZE(cerr_word), cerr_word);
15 /* 10進数の文字列をWORD値に変換 */
16 WORD n2word(const char *str)
18 assert(isdigit(*str) || *str == '-');
23 n = strtol(str, &check, 10);
25 setcerr(114, str); /* not integer */
28 /* nが-32768〜32767の範囲にないときは、その下位16ビットを格納 */
29 if(n < -32768 || n > 32767) {
35 /* 16進数の文字列をWORD値に変換 */
36 WORD h2word(const char *str)
43 if(*str == '-' || strlen(str) > 4) {
44 setcerr(116, str-1); /* out of hex range */
48 word = (WORD)strtol(str, &check, 16);
50 setcerr(115, str-1); /* not hex */
56 /* 10進数または16進数の文字列をWORD値に変換 */
57 WORD nh2word(const char *str)
61 if(!isdigit(*str) && *str != '-' && *str != '#') {
62 setcerr(114, str); /* not integer */
73 /* WORD値を10進数の文字列に変換 */
74 char *word2n(WORD word)
76 char *p = malloc_chk(6, "word2n.p"), *q = malloc_chk(6, "word2n.q");
79 *(p + i++) = word % 10 + '0';
80 } while((word /= 10) > 0);
81 for(j = 0; j < i; j++) {
82 *(q + j) = *(p + (i - 1) - j);
88 /* WORD値を2進数の文字列に変換 */
89 char *word2bit(const WORD word)
92 char *bit = malloc_chk(16 + 1, "word2bit.bit"), *p;
95 *p++ = (word & mask) ? '1' : '0';
96 } while((mask >>= 1) > 0);
102 void print_dumpword(WORD word, bool logicalmode)
104 if(logicalmode == true) {
105 fprintf(stdout, "%6d", word);
107 fprintf(stdout, "%6d", (signed short)word);
109 fprintf(stdout, " = #%04X = %s", word, word2bit(word));
110 /* 「文字の組」の符号表に記載された文字と、改行(CR)/タブを表示 */
111 if(word >= 0x20 && word <= 0x7E) {
112 fprintf(stdout, " = \'%c\'", word);
113 } else if(word == 0xA) {
114 fprintf(stdout, " = \'\\n\'");
115 } else if(word == '\t') {
116 fprintf(stdout, " = \'\\t\'");
118 fprintf(stdout, "\n");