命令ハッシュ表周辺の調整
[YACASL2.git] / src / exec.c
index 4851aea..17ac66b 100644 (file)
@@ -39,12 +39,9 @@ void svcout()
             setcerr(203, NULL);    /* SVC output - out of Comet II memory */
             return;
         }
-        if((w = memory[GR[1]+i]) == '\0') {
-            break;
-        }
         /* 「文字の組」の符号表に記載された文字と、改行(CR)/タブを表示 */
         /* それ以外の文字は、「.」で表す */
-        if((w >= 0x20 && w <= 0x7E) || w == 0xA || w == '\t') {
+        if(((w = memory[GR[1]+i]) >= 0x20 && w <= 0x7E) || w == 0xA || w == '\t') {
             putchar((char)w);
         } else {
             putchar('.');
@@ -141,7 +138,7 @@ void cpl(WORD val0, WORD val1)
 /* 算術演算なので、第15ビットは送り出されない */
 WORD sla(WORD val0, WORD val1)
 {
-    WORD sign, res, last;
+    WORD sign, res, last = 0x0;
     int i;
 
     FR = 0x0;
@@ -172,7 +169,7 @@ WORD sla(WORD val0, WORD val1)
 /* 空いたビット位置には符号と同じものが入る */
 WORD sra(WORD val0, WORD val1)
 {
-    WORD sign, res, last;
+    WORD sign, res, last = 0x0;
     int i;
 
     FR = 0x0;
@@ -204,7 +201,7 @@ WORD sra(WORD val0, WORD val1)
 /* 論理左シフト。フラグを設定して値を返す */
 WORD sll(WORD val0, WORD val1)
 {
-    WORD res = val0, last;
+    WORD res = val0, last = 0x0;
     int i;
 
     FR = 0x0;
@@ -230,7 +227,7 @@ WORD sll(WORD val0, WORD val1)
 /* 論理右シフト。フラグを設定して値を返す */
 WORD srl(WORD val0, WORD val1)
 {
-    WORD res = val0, last;
+    WORD res = val0, last = 0x0;
     int i;
 
     FR = 0x0;
@@ -267,15 +264,15 @@ void reset()
     }
 }
 
-/* コードの実行 */
+/* 仮想マシンCOMET IIでの実行 */
 void exec()
 {
     WORD op, r_r1, x_r2, val;
     CMDTYPE cmdtype;
-    char *errpr = malloc(8);
+    char *errpr = malloc(CERRSTRSIZE + 1);
     clock_t clock_begin, clock_end;
 
-    if((&execmode)->trace) {
+    if(execmode.trace) {
         fprintf(stdout, "\nExecuting machine codes\n");
     }
     /* フラグレジスタの初期値設定 */
@@ -303,7 +300,9 @@ void exec()
             sprintf(errpr, "PR:#%04X", PR);
             setcerr(205, errpr);    /* Stack Pointer (SP) - cannot allocate stack buffer */
         }
+        /* 命令の取り出し */
         op = memory[PR] & 0xFF00;
+        /* 命令の解読 */
         cmdtype = getcmdtype(op);
         r_r1 = (memory[PR] >> 4) & 0xF;
         x_r2 = memory[PR] & 0xF;
@@ -311,19 +310,19 @@ void exec()
         if(cerrno > 0) {
             goto execerr;
         }
-        if((&execmode)->trace){
+        if(execmode.trace){
             fprintf(stdout, "#%04X: Register::::\n", PR);
             dspregister();
         }
-        if((&execmode)->dump){
+        if(execmode.dump){
             fprintf(stdout, "#%04X: Memory::::\n", PR);
             dumpmemory();
         }
-        if((&execmode)->dump || (&execmode)->trace) {
+        if(execmode.dump || execmode.trace) {
             fprintf(stdout, "\n");
         }
         PR++;
-        /* å\87¦ç\90\86対象ã\81®å\80¤ã\82\92å\8f\96å¾\97 */
+        /* ã\82ªã\83\9aã\83©ã\83³ã\83\89ã\81®å\8f\96ã\82\8aå\87ºã\81\97 */
         if(cmdtype == R1_R2) {
             assert(x_r2 < REGSIZE);
             val = GR[x_r2];
@@ -349,7 +348,7 @@ void exec()
         if(op >= 0x1000 && op <= 0x4FFF) {
             op &= 0xFB00;
         }
-        /* å\91½ä»¤ã\81\94ã\81¨ã\81®å\87¦ç\90\86ã\82\92実行 */
+        /* å\91½ä»¤ã\81®実行 */
         switch(op)
         {
         case 0x0:  /* NOP */
@@ -469,7 +468,9 @@ void exec()
         do {
             clock_end = clock();
         } while(clock_end - clock_begin < CLOCKS_PER_SEC / clocks);
-/*        printf("PR:%04X; time: %f\n", PR, (double)((clock_end - clock_begin) * CLOCKS_PER_SEC)); */
+        #if 0
+        printf("PR:%04X; time: %f\n", PR, (double)((clock_end - clock_begin) * CLOCKS_PER_SEC));
+        #endif
     }
 execerr:
     fprintf(stderr, "Execute error - %d: %s\n", cerrno, cerrmsg);