逆アセンブル出力と、マシンコードモニター機能の修正
[YACASL2.git] / src / struct.c
index 0f0ae43..c1a1542 100644 (file)
@@ -210,7 +210,7 @@ const void (*getcmdptr(WORD code))
 CMDTYPE getcmdtype(WORD code)
 {
     CMDTAB *t;
-    CMDTYPE type = 0;
+    CMDTYPE type = NONE;
 
     for(t = code_cmdtype[hash_code(code)]; t != NULL; t = t->next) {
         if(code == t->cmd->code) {