メモリ内容を表示するとき、半角カナは表示しないよう仕様変更
authorj8takagi <j8takagi@nifty.com>
Thu, 1 Nov 2012 09:59:23 +0000 (18:59 +0900)
committerj8takagi <j8takagi@nifty.com>
Thu, 1 Nov 2012 09:59:23 +0000 (18:59 +0900)
src/word.c

index b3fa717..e355a67 100644 (file)
@@ -142,7 +142,7 @@ void print_dumpword(WORD word, bool logicalmode)
     }
     fprintf(stdout, " = #%04X = %s", word, word2bit(word));
     /* 「文字の組」の符号表に記載された文字と、改行(CR)/タブを表示 */
-    if((word >= 0x20 && word <= 0x7E) || (word >= 0xA0 && word <= 0xFE)) {
+    if(word >= 0x20 && word <= 0x7E) {
         fprintf(stdout, " = \'%c\'", word);
     } else if(word == 0xA) {
         fprintf(stdout, " = \'\\n\'");