X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fexec.c;h=17ac66bc13d4518c8ba2421cd9124cb1965ae717;hb=2b0ff8e75f11c5fb58e16e95d8195d6f1252c97c;hp=4851aeac1d15d629eb20db77f76085178d47cba0;hpb=dc4c4e843192f433bd0f14d88d5f101ebbd23820;p=YACASL2.git diff --git a/src/exec.c b/src/exec.c index 4851aea..17ac66b 100644 --- a/src/exec.c +++ b/src/exec.c @@ -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++; - /* 処理対象の値を取得 */ + /* オペランドの取り出し */ 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; } - /* 命令ごとの処理を実行 */ + /* 命令の実行 */ 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);