YACASL2の依存関係を整理
authorj8takagi <j8takagi@nifty.com>
Tue, 21 Dec 2010 01:06:31 +0000 (10:06 +0900)
committerj8takagi <j8takagi@nifty.com>
Tue, 21 Dec 2010 01:06:31 +0000 (10:06 +0900)
24 files changed:
Makefile
as/casl2lib/diva.casl
as/casl2lib/inl.casl [new file with mode: 0644]
as/casl2lib/l2str.casl [new file with mode: 0644]
as/casl2lib/mula.casl [new file with mode: 0644]
as/casl2lib/outa.casl [new file with mode: 0644]
as/casl2lib/outb.casl [new file with mode: 0644]
as/casl2lib/outd_q15.casl
as/casl2lib/outl.casl [new file with mode: 0644]
as/casl2lib/str2l.casl [new file with mode: 0644]
doc/graph/casl2lib_depend.dot [new file with mode: 0644]
doc/graph/yacasl2_depend.dot [new file with mode: 0644]
include/word.h
src/cmd.c
src/dumpword.c
src/word.c
test/system/Makefile
test/system/casl2/CASL2.log [deleted file]
test/system/casl2/Report.log [deleted file]
test/system/casl2/cmd_JOV_jov_m/0.txt
test/system/comet2/COMET2.log [deleted file]
test/system/comet2/Report.log [deleted file]
test/system/dumpword/DUMPWORD.log [deleted file]
test/system/dumpword/Report.log [deleted file]

index 5a4b7a2..5192135 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,14 +1,18 @@
 .PHONY: build check doc clean
 
 build:
-       make -C src
+       $(MAKE) -C src
 
 check:
-       @make -sC test/system
+       @$(MAKE) -sC test/system
 
 doc:
-       @make -sC doc
+       @$(MAKE) -sC doc
 
 clean:
-       @for target in src test/integration test/unit as/casl2lib; do $(MAKE) -sC $$target clean; done;
+       @$(MAKE) -sC src clean
+       @$(MAKE) -sC test/system/casl2 clean
+       @$(MAKE) -sC test/system/comet2 clean
+       @$(MAKE) -sC test/system/dumpword clean
+       @$(MAKE) -sC test/unit clean
        @rm -f casl2 comet2 dumpword
index 5e723f5..6796eb9 100644 (file)
@@ -23,7 +23,7 @@ CHK2    AND     GR2,GR2         ; (GR1 > 0)の場合は、DIVへジャンプ
         JOV     FIN             ; (GR2 = -32768)の場合は終了
         XOR     GR4,ONE         ; マイナスフラグを反転
 DIV     CALL    DIVL            ; GR0 <- GR1 / GR2; GR3 <- GR1 mod GR2
-        JOV     FIN             ; (GR2 = 0)の場合は終了        
+        JOV     FIN             ; (GR2 = 0)の場合は終了
 MIN     AND     GR4,GR4         ; マイナスフラグがオフの場合、終了
         JZE     FIN             ; ↓
         XOR     GR0,ALLON       ; GR1の正負を反転
diff --git a/as/casl2lib/inl.casl b/as/casl2lib/inl.casl
new file mode 100644 (file)
index 0000000..3587131
--- /dev/null
@@ -0,0 +1,22 @@
+;;; 0から65535の範囲にある整数の入力を受け付ける
+;;; 入力 (SVC)
+;;; 出力 GR1: 入力された数値
+;;;      GR0: 文字列の長さ。入力が数字以外の場合は、#FFFF
+;;;      65536以上の正数が入力された場合はエラー
+INL     START
+        IN      IBUF,ILEN       ; 入力文字列を格納
+        LAD     GR1,IBUF
+        LD      GR2,ILEN
+        CPA     GR2,LENMAX
+        JPL     LENOV
+        CALL    STR2L
+        JOV     FIN
+        LD      GR0,GR2
+        JUMP    FIN
+LENOV   LAD     GR0,#FFFF
+        SRA     GR0,1
+FIN     RET
+ILEN    DS      1
+LENMAX  DC      5
+IBUF    DS      5
+        END
diff --git a/as/casl2lib/l2str.casl b/as/casl2lib/l2str.casl
new file mode 100644 (file)
index 0000000..3623c72
--- /dev/null
@@ -0,0 +1,45 @@
+;;; 数値を10進数の整数を表す文字列として格納
+;;; 入力 GR1: 数値(0〜65535) GR2: 文字列を格納するアドレス
+;;; 出力 GR0: 文字列の長さ
+L2STR   START
+        PUSH    0,GR1
+        PUSH    0,GR3
+        PUSH    0,GR4
+        LAD     GR2,10          ; GR2に10進数の「10」を格納。
+        LAD     GR0,0           ; GR0 <- 0
+        LD      GR4,GR2         ; GR4 <- GR2
+        AND     GR1,GR1         ; GR1をテスト
+        JZE     ZERO            ; GR1が0の場合、ZEROにジャンプ
+        PUSH    0,GR2           ; GR2を退避
+        LAD     GR2,BASE        ; GR2 <- BASE:基数10
+STI     CPL     GR1,GR2         ; ループ先頭。(GR1 < GR2)の場合は、ループ脱出
+        JMI     STLST           ; ↓
+        CALL    DIVL            ; GR1とGR2の、商をGR0、剰余をGR3に格納
+        LD      GR1,GR3         ; GR1にGR3をコピー
+        LD      GR1,NCHAR,GR1   ; GR1を文字に変換
+        ST      GR1,0,GR4       ; GR4のアドレス <- GR1
+        LAD     GR4,1,GR4       ; GR4 <- GR4 + 1
+        LD      GR1,GR0         ; GR1 <- GR0:商
+        JUMP    STI             ; ループ終端
+STLST   LD      GR1,NCHAR,GR1   ; GR1を文字に変換
+        ST      GR1,0,GR4       ; GR4のアドレス <- GR1
+        LAD     GR4,1,GR4       ; GR4 <- GR4 + 1
+        POP     GR2             ; GR2を復元
+        SUBL    GR4,GR2         ; GR4 <- (GR4 - GR2):文字列の長さ
+        JUMP    RV              ; RVへジャンプ
+ZERO    LD      GR1,NCHAR       ; 「0」をSTR領域に格納
+        ST      GR1,0,GR4       ; ↓ GR4のアドレス <- GR1
+        LAD     GR4,1,GR4       ; ↓ GR4 <- GR4 + 1
+RV      LD      GR1,GR2         ; 文字列を逆順に並べ替え
+        LD      GR2,GR4         ; ↓
+        CALL    REV             ; ↓
+FIN     LD      GR0,GR2         ; GR0 <- GR2
+        LD      GR2,GR1         ; GR2 <- GR1
+        POP     GR4
+        POP     GR3
+        POP     GR1
+        RET
+BASE    DC      10
+LEN     DS      1
+NCHAR   DC      '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ'
+        END
diff --git a/as/casl2lib/mula.casl b/as/casl2lib/mula.casl
new file mode 100644 (file)
index 0000000..431486a
--- /dev/null
@@ -0,0 +1,41 @@
+;;; -32767〜32767の範囲にある正数のかけ算(筆算方式)を行う
+;;; 入力 GR1:被乗数 GR2:乗数
+;;; 出力 GR0:積
+;;; 被乗数または乗数が-32768の場合は、オーバーフロー
+;;; 積が-32767未満または32767より大きい場合は、GR0は積の下位16ビットになり、オーバーフロー
+MULA    START
+        RPUSH
+        XOR     GR0,GR0         ; 積
+        AND     GR1,GR1         ; (GR1 = 0)の場合、終了
+        JZE     FIN             ; ↓
+        AND     GR2,GR2         ; (GR2 = 0)の場合、終了
+        JZE     FIN             ; ↓
+        LAD     GR3,1           ; 対象ビット
+        XOR     GR4,GR4         ; マイナスフラグ
+CHK1    AND     GR1,GR1         ; (GR1 > 0)の場合は、CHK2へジャンプ
+        JPL     CHK2            ; ↓
+        XOR     GR1,ALLON       ; GR1の正負を反転
+        ADDA    GR1,ONE         ; ↓
+        JOV     FIN             ; (GR1 = -32768)の場合は終了
+        XOR     GR4,ONE         ; GR4 <- 1
+CHK2    AND     GR2,GR2         ; (GR1 > 0)の場合は、LOOPへジャンプ
+        JPL     MUL             ; ↓
+        XOR     GR2,ALLON       ; GR2の正負を反転
+        ADDA    GR2,ONE         ; ↓
+        JOV     FIN             ; (GR2 = -32768)の場合は終了
+        XOR     GR4,ONE         ; マイナスフラグを反転
+MUL     CALL    MULL            ; GR0 <- GR1 * GR2
+        JOV     FIN
+        AND     GR0,GR0
+        JMI     OV
+MIN     AND     GR4,GR4         ; マイナスフラグがオフの場合、終了
+        JZE     FIN             ; ↓
+        XOR     GR0,ALLON       ; GR1の正負を反転
+        ADDA    GR0,ONE         ; ↓
+        JUMP    FIN
+OV      ADDL    GR0,=#8000
+FIN     RPOP
+        RET
+ONE     DC      1
+ALLON   DC      #FFFF
+        END
diff --git a/as/casl2lib/outa.casl b/as/casl2lib/outa.casl
new file mode 100644 (file)
index 0000000..6f8f84d
--- /dev/null
@@ -0,0 +1,44 @@
+;;; GR1に格納された値を、10進数の整数値(-32768〜32767)として表示
+OUTA    START
+        RPUSH
+        LAD     GR2,10          ; GR2に10進数の「10」を格納。
+        LAD     GR0,0           ; GR0 <- 0
+        LAD     GR4,0           ; 負数フラグ。GR1が負数の場合、GR4は1
+        LAD     GR5,0           ; 整数値の長さ
+        AND     GR1,GR1         ; GR1をテスト
+        JZE     ZPRT            ; GR1が0の場合、ZPRTにジャンプ
+        JPL     STI             ; GR1が正数の場合、STIにジャンプ
+        LAD     GR4,1           ; GR1が負数の場合、GR4をオン
+        CALL    ABS             ;                  GR1を正数に変換
+STI     CPL     GR1,GR2         ; ループ先頭。(GR1 < GR2)の場合は、ループ脱出
+        JMI     STLST           ; ↓
+        CALL    DIVL            ; GR1とGR2の、商をGR0、剰余をGR3に格納
+        LD      GR1,GR3         ; GR1にGR3をコピー
+        LD      GR1,NCHAR,GR1   ; GR1を文字に変換
+        ST      GR1,STR,GR5     ; (STR + GR5) <- GR1
+        LAD     GR5,1,GR5       ; GR5 <- GR5 + 1
+        LD      GR1,GR0         ; GR0をGR1にコピー
+        JUMP    STI             ; ループ終端
+STLST   LD      GR1,NCHAR,GR1   ; GR1を文字に変換
+        ST      GR1,STR,GR5     ; (STR + GR5) <- GR1
+        LAD     GR5,1,GR5       ; GR5 <- GR5 + 1
+        AND     GR4,GR4         ; 正数の場合
+        JZE     PRT             ; ↓
+        LD      GR1,='-'        ; 負数の場合、「-」をSTR領域に格納
+        ST      GR1,STR,GR5     ; (STR + GR5) <- GR1
+        LAD     GR5,1,GR5       ; GR5 <- GR5 + 1
+        JUMP    PRT             ; PRTにジャンプ
+ZPRT    LD      GR1,NCHAR       ; 「0」をSTR領域に格納
+        ST      GR1,STR,GR5     ; (STR + GR5) <- GR1
+        LAD     GR5,1,GR5       ; GR5 <- GR5 + 1
+PRT     ST      GR5,LEN         ; LEN <- GR5
+        LD      GR2,LEN         ; GR2にLENの値を格納
+        LAD     GR1,STR         ; GR1に文字列のアドレスを格納
+        CALL    REV             ; 文字列を逆順に並べ替え
+        OUT     STR,LEN         ; 文字列を出力
+        RPOP
+        RET
+STR     DS      17
+LEN     DS      1
+NCHAR   DC      '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ'
+        END
diff --git a/as/casl2lib/outb.casl b/as/casl2lib/outb.casl
new file mode 100644 (file)
index 0000000..91ee4fa
--- /dev/null
@@ -0,0 +1,42 @@
+;;; GR1に格納された値を、2進数値として表示
+OUTB    START
+        RPUSH
+        LAD     GR2,2           ; GR2に2進数の「2」を格納。
+        LAD     GR0,0           ; GR0 <- 0
+        XOR     GR4,GR4         ; 2進数値の長さ
+        AND     GR1,GR1         ; GR1をテスト
+        JZE     ZERO            ; GR1が0の場合、ZEROにジャンプ
+STI     CPL     GR1,GR2         ; ループ先頭。(GR1 < GR2)の場合は、ループ脱出
+        JMI     STLST           ; ↓
+        CALL    DIVL            ; GR1とGR2の、商をGR0、剰余をGR3に格納
+        LD      GR1,GR3         ; GR1にGR3をコピー
+        LD      GR1,NCHAR,GR1   ; GR1を文字に変換
+        ST      GR1,STR,GR4     ; (STR + GR4) <- GR1
+        LAD     GR4,1,GR4       ; GR4 <- GR4 + 1
+        LD      GR1,GR0         ; GR0をGR1にコピー
+        JUMP    STI             ; ループ終端
+STLST   LD      GR1,NCHAR,GR1   ; GR1を文字に変換
+        ST      GR1,STR,GR4     ; (STR + GR4) <- GR1
+        LAD     GR4,1,GR4       ; GR4 <- GR4 + 1
+        JUMP    EMB             ; EMBにジャンプ
+ZERO    LD      GR1,NCHAR       ; 「0」をSTR領域に格納
+        ST      GR1,STR,GR4     ; ↓ (STR + GR4) <- GR1
+        LAD     GR4,1,GR4       ; ↓ GR4 <- GR4 + 1
+EMB     LD      GR1,NCHAR       ; GR1 <- '0'
+EMLOOP  CPA     GR4,DIG         ; ループ先頭。(GR4 = DIG)の場合は、ループ脱出
+        JZE     PRT             ; ↓
+        ST      GR1,STR,GR4     ; ↓ (STR + GR4) <- GR1
+        LAD     GR4,1,GR4       ; ↓ GR4 <- GR4 + 1
+        JUMP    EMLOOP          ; ループ終端
+PRT     ST      GR4,LEN         ; LEN <- GR4
+        LD      GR2,LEN         ; GR2にLENの値を格納
+        LAD     GR1,STR         ; GR1に文字列のアドレスを格納
+        CALL    REV             ; 文字列を逆順に並べ替え
+        OUT     STR,LEN         ; 文字列を出力
+        RPOP
+        RET
+STR     DS      17
+LEN     DS      1
+NCHAR   DC      '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ'
+DIG     DC      16
+        END
index 4728936..292d246 100644 (file)
@@ -26,7 +26,7 @@ STDN    LD      GR5,='0'        ; 「0」をSTR領域に格納
 ;; GR1の内容を小数値と見なし、10進数の文字列に変換してSTRに格納
 TODIG   AND     GR1,GR1         ; GR1が0の場合は、ループを脱出
         JZE     PRT             ; ↓
-        CALL    MUL             ; GR1とGR2の、積をGR1、オーバーフロー値をGR3に格納
+        CALL    MULL            ; GR1とGR2の、積をGR1、オーバーフロー値をGR3に格納
         LD      GR5,GR3         ; GR3をGR1にコピー
         ADDA    GR5,='0'        ; GR1を文字に変換
         ST      GR5,STR,GR4     ; (STR + GR4) <- GR1
@@ -42,30 +42,3 @@ PRT     ST      GR4,LEN         ; LEN <- GR4
 STR     DS      20
 LEN     DS      1
         END
-;; GR1の値を10倍にし、GR3にオーバーフロー値を格納
-MUL     START
-        PUSH    0,GR5
-        PUSH    0,GR6
-        LAD     GR3,0           ; GR3は、オーバーフロー値を格納
-        LAD     GR5,1           ; GR5は、インデックス
-        LD      GR6,GR1         ; GR6は、GR4の元の値を保持
-MLOOP   CPA     GR5,=10         ; GR5が10になったらループ脱出
-        JZE     MFIN            ; ↓
-        ADDA    GR1,GR6         ; GR4 <- GR4 + GR6
-        LAD     GR5,1,GR5       ; GR5 <- GR5 + 1
-        JOV     MADD            ; オーバーフローした場合、MADDへジャンプ
-        JUMP    MLOOP           ; ループ
-MADD    LAD     GR3,1,GR3       ; GR3 <- GR3 + 1
-        AND     GR1,=#7FFF      ; GR4の最上位ビットをクリア
-        JUMP    MLOOP           ; ループ
-MFIN    POP     GR6
-        POP     GR5
-        RET
-        END
-;; GR1の値を絶対値に変換する。GR1には0未満の数値が格納されていると想定。
-;; 例: -10 => 10, -20 => 20
-ABS     START
-        XOR     GR1,=#FFFF      ; GR1の値を反転
-        LAD     GR1,1,GR1       ; GR1 <- GR1 + 1
-        RET
-        END
diff --git a/as/casl2lib/outl.casl b/as/casl2lib/outl.casl
new file mode 100644 (file)
index 0000000..881db90
--- /dev/null
@@ -0,0 +1,35 @@
+;;; GR1に格納された値を、10進数の整数値(0〜65535)として表示
+OUTL    START
+        RPUSH
+        LAD     GR2,10          ; GR2に10進数の「10」を格納。
+        LAD     GR0,0           ; GR0 <- 0
+        XOR     GR4,GR4         ; 整数値の長さ
+        AND     GR1,GR1         ; GR1をテスト
+        JZE     ZERO            ; GR1が0の場合、ZEROにジャンプ
+STI     CPL     GR1,GR2         ; ループ先頭。(GR1 < GR2)の場合は、ループ脱出
+        JMI     STLST           ; ↓
+        CALL    DIVL            ; GR1とGR2の、商をGR0、剰余をGR3に格納
+        LD      GR1,GR3         ; GR1にGR3をコピー
+        LD      GR1,NCHAR,GR1   ; GR1を文字に変換
+        ST      GR1,STR,GR4     ; (STR + GR4) <- GR1
+        LAD     GR4,1,GR4       ; GR4 <- GR4 + 1
+        LD      GR1,GR0         ; GR0をGR1にコピー
+        JUMP    STI             ; ループ終端
+STLST   LD      GR1,NCHAR,GR1   ; GR1を文字に変換
+        ST      GR1,STR,GR4     ; (STR + GR4) <- GR1
+        LAD     GR4,1,GR4       ; GR4 <- GR4 + 1
+        JUMP    PRT             ; PRTにジャンプ
+ZERO    LD      GR1,NCHAR       ; 「0」をSTR領域に格納
+        ST      GR1,STR,GR4     ; ↓ (STR + GR4) <- GR1
+        LAD     GR4,1,GR4       ; ↓ GR4 <- GR4 + 1
+PRT     ST      GR4,LEN         ; LEN <- GR4
+        LD      GR2,LEN         ; GR2にLENの値を格納
+        LAD     GR1,STR         ; GR1に文字列のアドレスを格納
+        CALL    REV             ; 文字列を逆順に並べ替え
+        OUT     STR,LEN         ; 文字列を出力
+        RPOP
+        RET
+STR     DS      17              ; 符号付き2進数で表記した場合を想定
+LEN     DS      1
+NCHAR   DC      '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ'
+        END
diff --git a/as/casl2lib/str2l.casl b/as/casl2lib/str2l.casl
new file mode 100644 (file)
index 0000000..70532d3
--- /dev/null
@@ -0,0 +1,62 @@
+;;; 0〜65535の範囲にある整数の入力を受け付ける
+;;; 10進数の整数を表す文字列を数値に変換
+;;; 入力 GR1: 文字列を格納するアドレス
+;;;      GR2: 文字列の長さ。1-5を想定
+;;; 出力 GR0: 数値(0〜65535)
+;;;           文字列が長過ぎる場合や数値以外の場合は、GR2に#FFFFを格納
+STR2L   START
+        PUSH    0,GR3
+        PUSH    0,GR4
+        XOR     GR0,GR0         ; GR0:初期化
+        AND     GR2,GR2         ; (GR2 = 0)の場合、FINへジャンプ
+        JZE     FIN             ; ↓
+        CPL     GR2,MAXLEN      ; (GR2 > MAXLEN)の場合、LENOVへジャンプ
+        JPL     LENOV           ; ↓
+        ST      GR1,STR         ; STR <- GR1 文字列の開始アドレス
+        ST      GR2,LEN         ; LEN <- GR2
+        LAD     GR2,10          ; GR2:10進数の「10」
+        XOR     GR3,GR3         ; GR3:値の一時格納
+        XOR     GR4,GR4         ; GR4:インデックス
+STOL    CPL     GR4,LEN         ; ループ先頭。(GR4 = LEN)の場合、ループ脱出
+        JZE     CP              ; ↓
+        LD      GR1,STR         ; GR1に、入力文字列中の次の桁を格納
+        ADDL    GR1,GR4         ; ↓
+        LD      GR1,0,GR1       ; ↓
+        CPL     GR1,ZERO        ; (GR1 < '0')の場合、NANへジャンプ
+        JMI     NAN             ; ↓
+        CPL     GR1,NINE        ; (GR1 > '9')の場合、NANへジャンプ
+        JPL     NAN             ; ↓
+        SUBL    GR1,ZERO        ; GR1の文字を、対応する数値に変換
+        ST      GR4,NLEN        ; GR4 <- LEN - NLEN - 1
+        LD      GR4,LEN         ; ↓
+        SUBA    GR4,NLEN        ; ↓
+MUL10   CPA     GR4,=1          ; ループ先頭。GR1 <- 10 ** GR4
+        JZE     NEXT            ; (GR4 = 1)の場合、ループ脱出
+        JMI     NEXT            ; ↓
+        CALL    MULL            ; MULLを呼び出し、GR0 <- GR1 * GR2
+        JOV     FIN             ; ↓
+        LD      GR1,GR0         ; GR1 <- GR0
+        LAD     GR4,-1,GR4      ; GR4 <- GR4 -1
+        JUMP    MUL10           ; ループ終端
+NEXT    LD      GR4,NLEN        ; GR4 <- NLEN。復元
+        ADDL    GR3,GR1         ; GR3 <- GR3 + GR1
+        JOV     FIN             ; ↓
+        LAD     GR4,1,GR4       ; GR4 <- GR4 + 1
+        JUMP    STOL            ; ループ終端
+NAN     LAD     GR2,#FFFF       ; GR2 <- #FFFF
+        JUMP    FIN             ; FINへジャンプ
+CP      LD      GR1,GR3         ; GR0 <- GR3
+        LD      GR0,LEN         ; GR0 <- LEN
+        JUMP    FIN
+LENOV   LAD     GR0,#FFFF
+        SRA     GR0,1
+FIN     POP     GR4
+        POP     GR3
+        RET
+ZERO    DC      '0'
+NINE    DC      '9'
+MAXLEN  DC      10              ; 10桁の数値まで入力可能
+STR     DS      1
+LEN     DS      1
+NLEN    DS      1
+        END
diff --git a/doc/graph/casl2lib_depend.dot b/doc/graph/casl2lib_depend.dot
new file mode 100644 (file)
index 0000000..f34ad1d
--- /dev/null
@@ -0,0 +1,16 @@
+digraph CASL2LIBdepend {
+        graph [label = "YACASL2のモジュール依存関係"];
+        "DIVA" -> "DIVL";
+        "INL" -> "STR2L";
+        "L2STR" -> "DIVL";
+        "L2STR" -> "REV";
+        "MULA" -> "MULL";
+        "OUTA" -> "ABS";
+        "OUTB" -> "DIVL";
+        "OUTB" -> "REV";
+        "OUTD_Q15" -> "ABS";
+        "OUTD_Q15" -> "MULL";
+        "OUTL" -> "DIVL";
+        "OUTL" -> "REV";
+        "STR2L" -> "MULL"
+}
diff --git a/doc/graph/yacasl2_depend.dot b/doc/graph/yacasl2_depend.dot
new file mode 100644 (file)
index 0000000..5965d68
--- /dev/null
@@ -0,0 +1,22 @@
+digraph yacasl2depend {
+        graph [label = "YACASL2のモジュール依存関係"];
+        "assemble.c" -> "casl2.h";
+        "assemble.c" -> "assemble.h";
+        "casl2.c" -> "casl2.h";
+        "casl2.c" -> "assemble.h";
+        "casl2.c" -> "exec.h";
+        "cerr.c" -> "cerr.h";
+        
+        "comet2.c" -> "casl2.h";
+        "comet2.c" -> "exec.h";
+        "dumpword.c" -> "word.h";
+        "dumpword.c" -> "cerr.h";
+        "casl2.h" -> "word.h";
+        "casl2.h" -> "hash.h";
+        "casl2.h" -> "cmem.h";
+        "casl2.h" -> "cerr.h";
+        "cerr.h" -> "cmem.h";
+        "hash.h" -> "cmem.h";
+        "word.h" -> "cmem.h";
+        "word.h" -> "cerr.h";
+}
index 7f11c5e..72cde11 100644 (file)
@@ -8,9 +8,6 @@
 #include <ctype.h>
 #include <stdbool.h>
 
-#include "cmem.h"
-#include "cerr.h"
-
 /* wordのエラー定義 */
 bool addcerrlist_word();
 
index add169a..6c2c63f 100644 (file)
--- a/src/cmd.c
+++ b/src/cmd.c
@@ -1,3 +1,7 @@
+#include "cmem.h"
+#include "cerr.h"
+#include "hash.h"
+#include "word.h"
 #include "casl2.h"
 
 CMD comet2cmd[] = {
@@ -186,9 +190,9 @@ void free_code_type()
         np = code_type[i];
         while(np != NULL) {
             nq = np->next;
-            free(np);
+            free_chk(np, "np");
             np = nq;
         }
     }
-    free(code_type);
+    free_chk(code_type, "code_type");
 }
index dd49cd5..7e7d00a 100644 (file)
@@ -1,6 +1,8 @@
-#include "casl2.h"
 #define _GNU_SOURCE
 #include <getopt.h>
+#include "word.h"
+#include "cerr.h"
+#include "cmem.h"
 
 static struct option longopts[] = {
     { "arithmetic", no_argument, NULL, 'a' },
index 5f49cc4..6e9fb17 100644 (file)
@@ -1,4 +1,5 @@
 #include "word.h"
+#include "cerr.h"
 
 /* wordのエラー定義 */
 CERR cerr_word[] = {
index 9668e4c..0362afe 100644 (file)
@@ -3,3 +3,7 @@ check: casl2 comet2 dumpword
        $(MAKE) -sC comet2
        $(MAKE) -sC dumpword
 
+clean:
+       $(MAKE) -sC casl2 clean
+       $(MAKE) -sC comet2 clean
+       $(MAKE) -sC dumpword clean
diff --git a/test/system/casl2/CASL2.log b/test/system/casl2/CASL2.log
deleted file mode 100644 (file)
index 0f459f7..0000000
+++ /dev/null
@@ -1,587 +0,0 @@
-cmd_SRA_sra_z: Test Success 2010-12-14 01:13:01
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SRA_sra_z/detail.log
-
-cmd_XOR_xor0: Test Success 2010-12-14 01:13:01
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_XOR_xor0/detail.log
-
-cmd_SUBL_subl0_lo: Test Success 2010-12-14 01:13:01
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SUBL_subl0_lo/detail.log
-
-cmd_JPL_jpl_o: Test Success 2010-12-14 01:13:01
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_JPL_jpl_o/detail.log
-
-cmd_AND_and0_s: Test Success 2010-12-14 01:13:01
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_AND_and0_s/detail.log
-
-cmd_SLA_sla_oz: Test Success 2010-12-14 01:13:01
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SLA_sla_oz/detail.log
-
-cmd_RPUSH_rpush: Test Success 2010-12-14 01:13:01
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_RPUSH_rpush/detail.log
-
-cmd_ADDL_addl2: Test Success 2010-12-14 01:13:01
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_ADDL_addl2/detail.log
-
-cmd_JNZ_jnz_m: Test Success 2010-12-14 01:13:01
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_JNZ_jnz_m/detail.log
-
-cmd_OR_or0_s: Test Success 2010-12-14 01:13:01
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_OR_or0_s/detail.log
-
-cmd_SVC_svc2: Test Success 2010-12-14 01:13:01
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SVC_svc2/detail.log
-
-err_205: Test Success 2010-12-14 01:13:01
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/err_205/detail.log
-
-cmd_CPA_cpa2_s: Test Success 2010-12-14 01:13:01
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_CPA_cpa2_s/detail.log
-
-err_106_DS: Test Success 2010-12-14 01:13:01
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/err_106_DS/detail.log
-
-cmd_LD_ld1: Test Success 2010-12-14 01:13:01
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_LD_ld1/detail.log
-
-lib_mull: Test Success 2010-12-14 01:13:02
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/lib_mull/detail.log
-
-cmd_ADDA_adda0_ao: Test Success 2010-12-14 01:13:02
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_ADDA_adda0_ao/detail.log
-
-cmd_ST_st0: Test Success 2010-12-14 01:13:02
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_ST_st0/detail.log
-
-opt_slaO: Test Success 2010-12-14 01:13:02
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/opt_slaO/detail.log
-
-cmd_AND_and1: Test Success 2010-12-14 01:13:02
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_AND_and1/detail.log
-
-cmd_AND_and0_z: Test Success 2010-12-14 01:13:02
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_AND_and0_z/detail.log
-
-lib_outl: Test Success 2010-12-14 01:13:02
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/lib_outl/detail.log
-
-cmd_ADDL_addl0__o: Test Success 2010-12-14 01:13:02
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_ADDL_addl0__o/detail.log
-
-cmd_SUBL_subl2: Test Success 2010-12-14 01:13:02
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SUBL_subl2/detail.log
-
-cmd_JMI_jmi_m: Test Success 2010-12-14 01:13:02
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_JMI_jmi_m/detail.log
-
-err_116: Test Success 2010-12-14 01:13:02
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/err_116/detail.log
-
-cmd_JNZ_jnz_p: Test Success 2010-12-14 01:13:02
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_JNZ_jnz_p/detail.log
-
-cmd_CPA_cpa0: Test Success 2010-12-14 01:13:02
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_CPA_cpa0/detail.log
-
-cmd_IN_in: Test Success 2010-12-14 01:13:02
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_IN_in/detail.log
-
-cmd_SUBL_subl0__z: Test Success 2010-12-14 01:13:02
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SUBL_subl0__z/detail.log
-
-cmd_JOV_jov_m: Test Success 2010-12-14 01:13:02
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_JOV_jov_m/detail.log
-
-cmd_POP_push_pop_0: Test Success 2010-12-14 01:13:02
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_POP_push_pop_0/detail.log
-
-cmd_JPL_jpl_m: Test Success 2010-12-14 01:13:02
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_JPL_jpl_m/detail.log
-
-err_203: Test Success 2010-12-14 01:13:02
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/err_203/detail.log
-
-err_125: Test Success 2010-12-14 01:13:02
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/err_125/detail.log
-
-lib_inl: Test Success 2010-12-14 01:13:03
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/lib_inl/detail.log
-
-cmd_SLA_sla_s: Test Success 2010-12-14 01:13:03
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SLA_sla_s/detail.log
-
-cmd_JOV_jov_z: Test Success 2010-12-14 01:13:03
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_JOV_jov_z/detail.log
-
-cmd_SRA_sra_oz: Test Success 2010-12-14 01:13:03
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SRA_sra_oz/detail.log
-
-err_124: Test Success 2010-12-14 01:13:03
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/err_124/detail.log
-
-lib_outb: Test Success 2010-12-14 01:13:03
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/lib_outb/detail.log
-
-opt_s: Test Success 2010-12-14 01:13:03
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/opt_s/detail.log
-
-cmd_SLL_sll_o: Test Success 2010-12-14 01:13:03
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SLL_sll_o/detail.log
-
-cmd_SLL_sll: Test Success 2010-12-14 01:13:03
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SLL_sll/detail.log
-
-cmd_JNZ_jnz_z: Test Success 2010-12-14 01:13:03
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_JNZ_jnz_z/detail.log
-
-cmd_CPA_cpa1_s: Test Success 2010-12-14 01:13:03
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_CPA_cpa1_s/detail.log
-
-cmd_XOR_xor1: Test Success 2010-12-14 01:13:03
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_XOR_xor1/detail.log
-
-cmd_SLL_sll_os: Test Success 2010-12-14 01:13:03
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SLL_sll_os/detail.log
-
-cmd_JMI_jmi_o: Test Success 2010-12-14 01:13:03
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_JMI_jmi_o/detail.log
-
-opt_slaotd: Test Success 2010-12-14 01:13:03
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/opt_slaotd/detail.log
-
-opt_slA: Test Success 2010-12-14 01:13:03
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/opt_slA/detail.log
-
-err_204: Test Success 2010-12-14 01:13:03
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/err_204/detail.log
-
-cmd_JUMP_jump_p: Test Success 2010-12-14 01:13:04
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_JUMP_jump_p/detail.log
-
-cmd_ADDA_adda0_as1: Test Success 2010-12-14 01:13:04
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_ADDA_adda0_as1/detail.log
-
-cmd_SUBA_suba1: Test Success 2010-12-14 01:13:04
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SUBA_suba1/detail.log
-
-lib_mula: Test Success 2010-12-14 01:13:04
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/lib_mula/detail.log
-
-lib_abs: Test Success 2010-12-14 01:13:04
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/lib_abs/detail.log
-
-cmd_SLL_sll_z: Test Success 2010-12-14 01:13:04
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SLL_sll_z/detail.log
-
-err_120: Test Success 2010-12-14 01:13:04
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/err_120/detail.log
-
-cmd_SUBA_suba0_lo: Test Success 2010-12-14 01:13:04
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SUBA_suba0_lo/detail.log
-
-cmd_JNZ_jnz_o: Test Success 2010-12-14 01:13:04
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_JNZ_jnz_o/detail.log
-
-cmd_SUBA_suba0: Test Success 2010-12-14 01:13:05
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SUBA_suba0/detail.log
-
-cmd_ADDA_adda1: Test Success 2010-12-14 01:13:05
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_ADDA_adda1/detail.log
-
-lib_minim: Test Success 2010-12-14 01:13:05
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/lib_minim/detail.log
-
-cmd_XOR_xor0_z: Test Success 2010-12-14 01:13:05
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_XOR_xor0_z/detail.log
-
-cmd_CPL_cpl0: Test Success 2010-12-14 01:13:05
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_CPL_cpl0/detail.log
-
-cmd_OR_or2: Test Success 2010-12-14 01:13:05
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_OR_or2/detail.log
-
-opt_slaot: Test Success 2010-12-14 01:13:05
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/opt_slaot/detail.log
-
-err_111: Test Success 2010-12-14 01:13:05
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/err_111/detail.log
-
-cmd_SLL_sll_oz: Test Success 2010-12-14 01:13:05
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SLL_sll_oz/detail.log
-
-cmd_DC_dc_c0: Test Success 2010-12-14 01:13:05
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_DC_dc_c0/detail.log
-
-cmd_CPL_cpl1_s: Test Success 2010-12-14 01:13:05
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_CPL_cpl1_s/detail.log
-
-cmd_DS_ds: Test Success 2010-12-14 01:13:05
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_DS_ds/detail.log
-
-cmd_JMI_jmi_z: Test Success 2010-12-14 01:13:05
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_JMI_jmi_z/detail.log
-
-cmd_LAD_lad1_o: Test Success 2010-12-14 01:13:05
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_LAD_lad1_o/detail.log
-
-cmd_SRA_sra: Test Success 2010-12-14 01:13:05
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SRA_sra/detail.log
-
-cmd_DC_dc_i1: Test Success 2010-12-14 01:13:05
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_DC_dc_i1/detail.log
-
-err_108: Test Success 2010-12-14 01:13:05
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/err_108/detail.log
-
-err_207: Test Success 2010-12-14 01:13:05
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/err_207/detail.log
-
-opt_slao_T: Test Success 2010-12-14 01:13:06
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/opt_slao_T/detail.log
-
-cmd_OR_or0_z: Test Success 2010-12-14 01:13:06
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_OR_or0_z/detail.log
-
-err_101: Test Success 2010-12-14 01:13:06
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/err_101/detail.log
-
-err_106_DC: Test Success 2010-12-14 01:13:06
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/err_106_DC/detail.log
-
-cmd_ADDL_addl0_as1: Test Success 2010-12-14 01:13:06
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_ADDL_addl0_as1/detail.log
-
-cmd_SLL_sll_s: Test Success 2010-12-14 01:13:06
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SLL_sll_s/detail.log
-
-cmd_RPOP_rpop: Test Success 2010-12-14 01:13:06
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_RPOP_rpop/detail.log
-
-cmd_SUBA_suba0__o: Test Success 2010-12-14 01:13:06
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SUBA_suba0__o/detail.log
-
-cmd_LAD_lad0: Test Success 2010-12-14 01:13:06
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_LAD_lad0/detail.log
-
-cmd_JOV_jov_o: Test Success 2010-12-14 01:13:06
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_JOV_jov_o/detail.log
-
-cmd_ADDL_addl1: Test Success 2010-12-14 01:13:06
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_ADDL_addl1/detail.log
-
-cmd_ADDA_adda0_az: Test Success 2010-12-14 01:13:06
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_ADDA_adda0_az/detail.log
-
-cmd_DC_dc_i0: Test Success 2010-12-14 01:13:06
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_DC_dc_i0/detail.log
-
-opt_opterr: Test Success 2010-12-14 01:13:06
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/opt_opterr/detail.log
-
-cmd_LD_ld0_l: Test Success 2010-12-14 01:13:06
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_LD_ld0_l/detail.log
-
-cmd_AND_and0: Test Success 2010-12-14 01:13:06
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_AND_and0/detail.log
-
-ADDAコマンドのテスト。正常系
-cmd_ADDA_adda0: Test Success 2010-12-14 01:13:06
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_ADDA_adda0/detail.log
-
-cmd_JZE_jze_z: Test Success 2010-12-14 01:13:06
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_JZE_jze_z/detail.log
-
-err_126: Test Success 2010-12-14 01:13:07
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/err_126/detail.log
-
-err_112: Test Success 2010-12-14 01:13:07
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/err_112/detail.log
-
-opt_sL: Test Success 2010-12-14 01:13:07
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/opt_sL/detail.log
-
-cmd_OUT_out: Test Success 2010-12-14 01:13:07
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_OUT_out/detail.log
-
-cmd_SLA_sla: Test Success 2010-12-14 01:13:07
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SLA_sla/detail.log
-
-cmd_LD_ld0: Test Success 2010-12-14 01:13:07
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_LD_ld0/detail.log
-
-cmd_SUBL_subl0: Test Success 2010-12-14 01:13:07
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SUBL_subl0/detail.log
-
-cmd_SRA_sra_os: Test Success 2010-12-14 01:13:07
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SRA_sra_os/detail.log
-
-err_123: Test Success 2010-12-14 01:13:07
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/err_123/detail.log
-
-err_105: Test Success 2010-12-14 01:13:07
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/err_105/detail.log
-
-cmd_SUBA_suba0_ao: Test Success 2010-12-14 01:13:07
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SUBA_suba0_ao/detail.log
-
-cmd_SVC_svc1: Test Success 2010-12-14 01:13:07
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SVC_svc1/detail.log
-
-cmd_JMI_jmi_p: Test Success 2010-12-14 01:13:07
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_JMI_jmi_p/detail.log
-
-cmd_JZE_jze_m: Test Success 2010-12-14 01:13:07
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_JZE_jze_m/detail.log
-
-cmd_DC_dc_i_of: Test Success 2010-12-14 01:13:07
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_DC_dc_i_of/detail.log
-
-cmd_SRA_sra_s: Test Success 2010-12-14 01:13:07
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SRA_sra_s/detail.log
-
-cmd_ADDA_adda2: Test Success 2010-12-14 01:13:07
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_ADDA_adda2/detail.log
-
-cmd_SUBA_suba0__z: Test Success 2010-12-14 01:13:07
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SUBA_suba0__z/detail.log
-
-err_104: Test Success 2010-12-14 01:13:07
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/err_104/detail.log
-
-cmd_XOR_xor2: Test Success 2010-12-14 01:13:08
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_XOR_xor2/detail.log
-
-cmd_CPA_cpa0_z: Test Success 2010-12-14 01:13:08
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_CPA_cpa0_z/detail.log
-
-lib_rev: Test Success 2010-12-14 01:13:08
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/lib_rev/detail.log
-
-err_206: Test Success 2010-12-14 01:13:08
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/err_206/detail.log
-
-err_119: Test Success 2010-12-14 01:13:08
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/err_119/detail.log
-
-cmd_SRL_srl_z: Test Success 2010-12-14 01:13:08
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SRL_srl_z/detail.log
-
-cmd_SLA_sla_z: Test Success 2010-12-14 01:13:08
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SLA_sla_z/detail.log
-
-cmd_JUMP_jump_o: Test Success 2010-12-14 01:13:08
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_JUMP_jump_o/detail.log
-
-err_113: Test Success 2010-12-14 01:13:08
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/err_113/detail.log
-
-cmd_ADDL_addl0: Test Success 2010-12-14 01:13:08
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_ADDL_addl0/detail.log
-
-cmd_OR_or1: Test Success 2010-12-14 01:13:08
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_OR_or1/detail.log
-
-cmd_SLA_sla_o: Test Success 2010-12-14 01:13:08
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SLA_sla_o/detail.log
-
-cmd_ADDL_addl0_ao: Test Success 2010-12-14 01:13:08
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_ADDL_addl0_ao/detail.log
-
-cmd_OR_or0: Test Success 2010-12-14 01:13:08
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_OR_or0/detail.log
-
-cmd_ADDL_addl0_lo: Test Success 2010-12-14 01:13:08
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_ADDL_addl0_lo/detail.log
-
-cmd_CPA_cpa0_s: Test Success 2010-12-14 01:13:08
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_CPA_cpa0_s/detail.log
-
-err_118: Test Success 2010-12-14 01:13:08
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/err_118/detail.log
-
-ADDAコマンドのテスト。オーバーフロー発生
-cmd_ADDA_adda0__o: Test Success 2010-12-14 01:13:08
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_ADDA_adda0__o/detail.log
-
-cmd_ADDA_adda0_as0: Test Success 2010-12-14 01:13:09
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_ADDA_adda0_as0/detail.log
-
-cmd_XOR_xor0_s: Test Success 2010-12-14 01:13:09
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_XOR_xor0_s/detail.log
-
-err_202: Test Success 2010-12-14 01:13:09
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/err_202/detail.log
-
-cmd_JOV_jov_p: Test Success 2010-12-14 01:13:09
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_JOV_jov_p/detail.log
-
-cmd_SUBL_subl0__o: Test Success 2010-12-14 01:13:09
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SUBL_subl0__o/detail.log
-
-cmd_SRL_srl_s: Test Success 2010-12-14 01:13:09
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SRL_srl_s/detail.log
-
-cmd_SUBA_suba0_as0: Test Success 2010-12-14 01:13:09
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SUBA_suba0_as0/detail.log
-
-cmd_DS_ds_0: Test Success 2010-12-14 01:13:09
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_DS_ds_0/detail.log
-
-cmd_SUBL_subl0_ao: Test Success 2010-12-14 01:13:09
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SUBL_subl0_ao/detail.log
-
-cmd_ADDL_addl0_az: Test Success 2010-12-14 01:13:09
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_ADDL_addl0_az/detail.log
-
-err_103: Test Success 2010-12-14 01:13:09
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/err_103/detail.log
-
-cmd_SRL_srl_o: Test Success 2010-12-14 01:13:09
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SRL_srl_o/detail.log
-
-cmd_JPL_jpl_z: Test Success 2010-12-14 01:13:09
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_JPL_jpl_z/detail.log
-
-cmd_CALL_call0: Test Success 2010-12-14 01:13:09
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_CALL_call0/detail.log
-
-err_115: Test Success 2010-12-14 01:13:09
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/err_115/detail.log
-
-err_117: Test Success 2010-12-14 01:13:09
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/err_117/detail.log
-
-cmd_JPL_jpl_p: Test Success 2010-12-14 01:13:09
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_JPL_jpl_p/detail.log
-
-err_114: Test Success 2010-12-14 01:13:09
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/err_114/detail.log
-
-cmd_NOP_nop: Test Success 2010-12-14 01:13:09
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_NOP_nop/detail.log
-
-cmd_JZE_jze_o: Test Success 2010-12-14 01:13:10
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_JZE_jze_o/detail.log
-
-cmd_SUBA_suba2: Test Success 2010-12-14 01:13:10
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SUBA_suba2/detail.log
-
-opt_h: Test Success 2010-12-14 01:13:10
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/opt_h/detail.log
-
-cmd_SUBL_subl0_as1: Test Success 2010-12-14 01:13:10
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SUBL_subl0_as1/detail.log
-
-cmd_JUMP_jump_m: Test Success 2010-12-14 01:13:10
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_JUMP_jump_m/detail.log
-
-cmd_CALL_call1: Test Success 2010-12-14 01:13:10
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_CALL_call1/detail.log
-
-cmd_SUBL_subl1: Test Success 2010-12-14 01:13:10
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SUBL_subl1/detail.log
-
-cmd_SUBL_subl0_as0: Test Success 2010-12-14 01:13:10
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SUBL_subl0_as0/detail.log
-
-cmd_ADDA_adda0_lo: Test Success 2010-12-14 01:13:10
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_ADDA_adda0_lo/detail.log
-
-lib_divl: Test Success 2010-12-14 01:13:11
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/lib_divl/detail.log
-
-err_110: Test Success 2010-12-14 01:13:11
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/err_110/detail.log
-
-cmd_CPL_cpl0_ls: Test Success 2010-12-14 01:13:11
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_CPL_cpl0_ls/detail.log
-
-cmd_ADDL_addl0__z: Test Success 2010-12-14 01:13:11
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_ADDL_addl0__z/detail.log
-
-cmd_CPL_cpl0_s: Test Success 2010-12-14 01:13:11
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_CPL_cpl0_s/detail.log
-
-cmd_SRL_srl: Test Success 2010-12-14 01:13:11
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SRL_srl/detail.log
-
-cmd_XOR_xor2_clear: Test Success 2010-12-14 01:13:11
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_XOR_xor2_clear/detail.log
-
-err_109: Test Success 2010-12-14 01:13:11
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/err_109/detail.log
-
-cmd_ST_st1: Test Success 2010-12-14 01:13:11
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_ST_st1/detail.log
-
-lib_addl32: Test Success 2010-12-14 01:13:11
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/lib_addl32/detail.log
-
-cmd_ADDL_addl0_as0: Test Success 2010-12-14 01:13:11
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_ADDL_addl0_as0/detail.log
-
-cmd_SRL_srl_oz: Test Success 2010-12-14 01:13:11
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SRL_srl_oz/detail.log
-
-cmd_CPL_cpl2_s: Test Success 2010-12-14 01:13:11
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_CPL_cpl2_s/detail.log
-
-hello: Test Success 2010-12-14 01:13:11
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/hello/detail.log
-
-cmd_DC_dc_c1: Test Success 2010-12-14 01:13:11
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_DC_dc_c1/detail.log
-
-cmd_CPL_cpl0_z: Test Success 2010-12-14 01:13:11
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_CPL_cpl0_z/detail.log
-
-cmd_JUMP_jump_z: Test Success 2010-12-14 01:13:11
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_JUMP_jump_z/detail.log
-
-cmd_JZE_jze_p: Test Success 2010-12-14 01:13:12
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_JZE_jze_p/detail.log
-
-lib_outa: Test Success 2010-12-14 01:13:12
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/lib_outa/detail.log
-
-cmd_LD_ld2: Test Success 2010-12-14 01:13:12
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_LD_ld2/detail.log
-
-cmd_POP_push_pop_1: Test Success 2010-12-14 01:13:12
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_POP_push_pop_1/detail.log
-
-cmd_LAD_lad1: Test Success 2010-12-14 01:13:12
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_LAD_lad1/detail.log
-
-err_121: Test Success 2010-12-14 01:13:12
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/err_121/detail.log
-
-cmd_AND_and2: Test Success 2010-12-14 01:13:12
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_AND_and2/detail.log
-
-opt_slaOn: Test Success 2010-12-14 01:13:12
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/opt_slaOn/detail.log
-
-cmd_ADDA_adda0__z: Test Success 2010-12-14 01:13:12
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_ADDA_adda0__z/detail.log
-
-cmd_SRA_sra_o: Test Success 2010-12-14 01:13:12
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SRA_sra_o/detail.log
-
-cmd_CPA_cpa0_ls: Test Success 2010-12-14 01:13:12
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_CPA_cpa0_ls/detail.log
-
-cmd_SUBA_suba0_as1: Test Success 2010-12-14 01:13:12
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SUBA_suba0_as1/detail.log
-
-cmd_SLA_sla_os: Test Success 2010-12-14 01:13:12
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_SLA_sla_os/detail.log
-
-cmd_LAD_lad1_s: Test Success 2010-12-14 01:13:12
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/cmd_LAD_lad1_s/detail.log
-
-err_107: Test Success 2010-12-14 01:13:12
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/err_107/detail.log
-
-lib_outd_q15: Test Success 2010-12-14 01:13:12
-Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/lib_outd_q15/detail.log
-
diff --git a/test/system/casl2/Report.log b/test/system/casl2/Report.log
deleted file mode 100644 (file)
index ba527dc..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-casl2: 195 / 195 tests passed. Detail in /home/kazubito/2010_12/yacasl2/test/system/casl2/CASL2.log
-casl2: All tests are succeded.
index 39790d2..c6cfcba 100644 (file)
@@ -135,3 +135,140 @@ Executing machine codes
 #000B: adr : 0000 0001 0002 0003 0004 0005 0006 0007 0008 0009 000A 000B 000C 000D 000E 000F
 #000B: 0000: 1010 000C 3411 6600 0009 1210 0000 6400 000B 1210 FFFF 8100 FFFF 0000 0000 0000
 
+;;; JOV  OF:0/SF:1/ZF:0
+MAIN    START
+        LD      GR1,A
+        AND     GR1,GR1
+        JOV     TO
+        LAD     GR1,0
+        JUMP    FIN
+TO      LAD     GR1,#FFFF
+FIN     RET
+A       DC      -1
+        END
+
+Assemble ../../../../as/cmd/JOV/jov_m.casl (0)
+
+Assemble ../../../../as/cmd/JOV/jov_m.casl (1)
+../../../../as/cmd/JOV/jov_m.casl:    1:;;; JOV  OF:0/SF:1/ZF:0
+../../../../as/cmd/JOV/jov_m.casl:    2:MAIN    START
+../../../../as/cmd/JOV/jov_m.casl:    3:        LD      GR1,A
+       #0000   #1010
+       #0001   #000C
+../../../../as/cmd/JOV/jov_m.casl:    4:        AND     GR1,GR1
+       #0002   #3411
+../../../../as/cmd/JOV/jov_m.casl:    5:        JOV     TO
+       #0003   #6600
+       #0004   #0009
+../../../../as/cmd/JOV/jov_m.casl:    6:        LAD     GR1,0
+       #0005   #1210
+       #0006   #0000
+../../../../as/cmd/JOV/jov_m.casl:    7:        JUMP    FIN
+       #0007   #6400
+       #0008   #000B
+../../../../as/cmd/JOV/jov_m.casl:    8:TO      LAD     GR1,#FFFF
+       #0009   #1210
+       #000A   #FFFF
+../../../../as/cmd/JOV/jov_m.casl:    9:FIN     RET
+       #000B   #8100
+../../../../as/cmd/JOV/jov_m.casl:   10:A       DC      -1
+       #000C   #FFFF
+../../../../as/cmd/JOV/jov_m.casl:   11:        END
+
+Executing machine codes
+#0000: Register::::
+#0000: GR0:      0 = #0000 = 0000000000000000
+#0000: GR1:      0 = #0000 = 0000000000000000
+#0000: GR2:      0 = #0000 = 0000000000000000
+#0000: GR3:      0 = #0000 = 0000000000000000
+#0000: GR4:      0 = #0000 = 0000000000000000
+#0000: GR5:      0 = #0000 = 0000000000000000
+#0000: GR6:      0 = #0000 = 0000000000000000
+#0000: GR7:      0 = #0000 = 0000000000000000
+#0000: SP:      16 = #0010 = 0000000000010000
+#0000: PR:       0 = #0000 = 0000000000000000
+#0000: FR (OF SF ZF): 000
+#0000: Memory::::
+#0000: adr : 0000 0001 0002 0003 0004 0005 0006 0007 0008 0009 000A 000B 000C 000D 000E 000F
+#0000: 0000: 1010 000C 3411 6600 0009 1210 0000 6400 000B 1210 FFFF 8100 FFFF 0000 0000 0000
+
+#0002: Register::::
+#0002: GR0:      0 = #0000 = 0000000000000000
+#0002: GR1:     -1 = #FFFF = 1111111111111111
+#0002: GR2:      0 = #0000 = 0000000000000000
+#0002: GR3:      0 = #0000 = 0000000000000000
+#0002: GR4:      0 = #0000 = 0000000000000000
+#0002: GR5:      0 = #0000 = 0000000000000000
+#0002: GR6:      0 = #0000 = 0000000000000000
+#0002: GR7:      0 = #0000 = 0000000000000000
+#0002: SP:      16 = #0010 = 0000000000010000
+#0002: PR:       2 = #0002 = 0000000000000010
+#0002: FR (OF SF ZF): 010
+#0002: Memory::::
+#0002: adr : 0000 0001 0002 0003 0004 0005 0006 0007 0008 0009 000A 000B 000C 000D 000E 000F
+#0002: 0000: 1010 000C 3411 6600 0009 1210 0000 6400 000B 1210 FFFF 8100 FFFF 0000 0000 0000
+
+#0003: Register::::
+#0003: GR0:      0 = #0000 = 0000000000000000
+#0003: GR1:     -1 = #FFFF = 1111111111111111
+#0003: GR2:      0 = #0000 = 0000000000000000
+#0003: GR3:      0 = #0000 = 0000000000000000
+#0003: GR4:      0 = #0000 = 0000000000000000
+#0003: GR5:      0 = #0000 = 0000000000000000
+#0003: GR6:      0 = #0000 = 0000000000000000
+#0003: GR7:      0 = #0000 = 0000000000000000
+#0003: SP:      16 = #0010 = 0000000000010000
+#0003: PR:       3 = #0003 = 0000000000000011
+#0003: FR (OF SF ZF): 010
+#0003: Memory::::
+#0003: adr : 0000 0001 0002 0003 0004 0005 0006 0007 0008 0009 000A 000B 000C 000D 000E 000F
+#0003: 0000: 1010 000C 3411 6600 0009 1210 0000 6400 000B 1210 FFFF 8100 FFFF 0000 0000 0000
+
+#0005: Register::::
+#0005: GR0:      0 = #0000 = 0000000000000000
+#0005: GR1:     -1 = #FFFF = 1111111111111111
+#0005: GR2:      0 = #0000 = 0000000000000000
+#0005: GR3:      0 = #0000 = 0000000000000000
+#0005: GR4:      0 = #0000 = 0000000000000000
+#0005: GR5:      0 = #0000 = 0000000000000000
+#0005: GR6:      0 = #0000 = 0000000000000000
+#0005: GR7:      0 = #0000 = 0000000000000000
+#0005: SP:      16 = #0010 = 0000000000010000
+#0005: PR:       5 = #0005 = 0000000000000101
+#0005: FR (OF SF ZF): 010
+#0005: Memory::::
+#0005: adr : 0000 0001 0002 0003 0004 0005 0006 0007 0008 0009 000A 000B 000C 000D 000E 000F
+#0005: 0000: 1010 000C 3411 6600 0009 1210 0000 6400 000B 1210 FFFF 8100 FFFF 0000 0000 0000
+
+#0007: Register::::
+#0007: GR0:      0 = #0000 = 0000000000000000
+#0007: GR1:      0 = #0000 = 0000000000000000
+#0007: GR2:      0 = #0000 = 0000000000000000
+#0007: GR3:      0 = #0000 = 0000000000000000
+#0007: GR4:      0 = #0000 = 0000000000000000
+#0007: GR5:      0 = #0000 = 0000000000000000
+#0007: GR6:      0 = #0000 = 0000000000000000
+#0007: GR7:      0 = #0000 = 0000000000000000
+#0007: SP:      16 = #0010 = 0000000000010000
+#0007: PR:       7 = #0007 = 0000000000000111
+#0007: FR (OF SF ZF): 010
+#0007: Memory::::
+#0007: adr : 0000 0001 0002 0003 0004 0005 0006 0007 0008 0009 000A 000B 000C 000D 000E 000F
+#0007: 0000: 1010 000C 3411 6600 0009 1210 0000 6400 000B 1210 FFFF 8100 FFFF 0000 0000 0000
+
+#000B: Register::::
+#000B: GR0:      0 = #0000 = 0000000000000000
+#000B: GR1:      0 = #0000 = 0000000000000000
+#000B: GR2:      0 = #0000 = 0000000000000000
+#000B: GR3:      0 = #0000 = 0000000000000000
+#000B: GR4:      0 = #0000 = 0000000000000000
+#000B: GR5:      0 = #0000 = 0000000000000000
+#000B: GR6:      0 = #0000 = 0000000000000000
+#000B: GR7:      0 = #0000 = 0000000000000000
+#000B: SP:      16 = #0010 = 0000000000010000
+#000B: PR:      11 = #000B = 0000000000001011
+#000B: FR (OF SF ZF): 010
+#000B: Memory::::
+#000B: adr : 0000 0001 0002 0003 0004 0005 0006 0007 0008 0009 000A 000B 000C 000D 000E 000F
+#000B: 0000: 1010 000C 3411 6600 0009 1210 0000 6400 000B 1210 FFFF 8100 FFFF 0000 0000 0000
+
diff --git a/test/system/comet2/COMET2.log b/test/system/comet2/COMET2.log
deleted file mode 100644 (file)
index ea81549..0000000
+++ /dev/null
@@ -1,450 +0,0 @@
-cmd_SRA_sra_z: Test Success 2010-12-14 01:13:15
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SRA_sra_z/detail.log
-
-cmd_XOR_xor0: Test Success 2010-12-14 01:13:15
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_XOR_xor0/detail.log
-
-cmd_SUBL_subl0_lo: Test Success 2010-12-14 01:13:15
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SUBL_subl0_lo/detail.log
-
-cmd_JPL_jpl_o: Test Success 2010-12-14 01:13:15
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_JPL_jpl_o/detail.log
-
-cmd_AND_and0_s: Test Success 2010-12-14 01:13:16
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_AND_and0_s/detail.log
-
-cmd_SLA_sla_oz: Test Success 2010-12-14 01:13:16
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SLA_sla_oz/detail.log
-
-cmd_RPUSH_rpush: Test Success 2010-12-14 01:13:16
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_RPUSH_rpush/detail.log
-
-cmd_ADDL_addl2: Test Success 2010-12-14 01:13:16
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_ADDL_addl2/detail.log
-
-cmd_JNZ_jnz_m: Test Success 2010-12-14 01:13:16
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_JNZ_jnz_m/detail.log
-
-cmd_OR_or0_s: Test Success 2010-12-14 01:13:16
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_OR_or0_s/detail.log
-
-cmd_SVC_svc2: Test Success 2010-12-14 01:13:16
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SVC_svc2/detail.log
-
-err_205: Test Success 2010-12-14 01:13:16
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/err_205/detail.log
-
-cmd_CPA_cpa2_s: Test Success 2010-12-14 01:13:16
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_CPA_cpa2_s/detail.log
-
-cmd_LD_ld1: Test Success 2010-12-14 01:13:16
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_LD_ld1/detail.log
-
-cmd_ADDA_adda0_ao: Test Success 2010-12-14 01:13:16
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_ADDA_adda0_ao/detail.log
-
-cmd_ST_st0: Test Success 2010-12-14 01:13:16
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_ST_st0/detail.log
-
-cmd_AND_and1: Test Success 2010-12-14 01:13:16
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_AND_and1/detail.log
-
-cmd_AND_and0_z: Test Success 2010-12-14 01:13:16
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_AND_and0_z/detail.log
-
-cmd_ADDL_addl0__o: Test Success 2010-12-14 01:13:16
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_ADDL_addl0__o/detail.log
-
-cmd_SUBL_subl2: Test Success 2010-12-14 01:13:16
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SUBL_subl2/detail.log
-
-cmd_JMI_jmi_m: Test Success 2010-12-14 01:13:16
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_JMI_jmi_m/detail.log
-
-cmd_JNZ_jnz_p: Test Success 2010-12-14 01:13:16
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_JNZ_jnz_p/detail.log
-
-cmd_CPA_cpa0: Test Success 2010-12-14 01:13:16
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_CPA_cpa0/detail.log
-
-cmd_IN_in: Test Success 2010-12-14 01:13:17
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_IN_in/detail.log
-
-cmd_SUBL_subl0__z: Test Success 2010-12-14 01:13:17
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SUBL_subl0__z/detail.log
-
-cmd_JOV_jov_m: Test Success 2010-12-14 01:13:17
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_JOV_jov_m/detail.log
-
-cmd_POP_push_pop_0: Test Success 2010-12-14 01:13:17
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_POP_push_pop_0/detail.log
-
-cmd_JPL_jpl_m: Test Success 2010-12-14 01:13:17
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_JPL_jpl_m/detail.log
-
-err_203: Test Success 2010-12-14 01:13:17
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/err_203/detail.log
-
-cmd_SLA_sla_s: Test Success 2010-12-14 01:13:17
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SLA_sla_s/detail.log
-
-cmd_JOV_jov_z: Test Success 2010-12-14 01:13:17
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_JOV_jov_z/detail.log
-
-cmd_SRA_sra_oz: Test Success 2010-12-14 01:13:17
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SRA_sra_oz/detail.log
-
-cmd_SLL_sll_o: Test Success 2010-12-14 01:13:17
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SLL_sll_o/detail.log
-
-cmd_SLL_sll: Test Success 2010-12-14 01:13:17
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SLL_sll/detail.log
-
-cmd_JNZ_jnz_z: Test Success 2010-12-14 01:13:17
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_JNZ_jnz_z/detail.log
-
-cmd_CPA_cpa1_s: Test Success 2010-12-14 01:13:17
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_CPA_cpa1_s/detail.log
-
-cmd_XOR_xor1: Test Success 2010-12-14 01:13:17
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_XOR_xor1/detail.log
-
-cmd_SLL_sll_os: Test Success 2010-12-14 01:13:17
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SLL_sll_os/detail.log
-
-cmd_JMI_jmi_o: Test Success 2010-12-14 01:13:17
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_JMI_jmi_o/detail.log
-
-err_204: Test Success 2010-12-14 01:13:17
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/err_204/detail.log
-
-cmd_JUMP_jump_p: Test Success 2010-12-14 01:13:17
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_JUMP_jump_p/detail.log
-
-cmd_ADDA_adda0_as1: Test Success 2010-12-14 01:13:17
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_ADDA_adda0_as1/detail.log
-
-cmd_SUBA_suba1: Test Success 2010-12-14 01:13:18
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SUBA_suba1/detail.log
-
-cmd_SLL_sll_z: Test Success 2010-12-14 01:13:18
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SLL_sll_z/detail.log
-
-cmd_SUBA_suba0_lo: Test Success 2010-12-14 01:13:18
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SUBA_suba0_lo/detail.log
-
-cmd_JNZ_jnz_o: Test Success 2010-12-14 01:13:18
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_JNZ_jnz_o/detail.log
-
-cmd_SUBA_suba0: Test Success 2010-12-14 01:13:18
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SUBA_suba0/detail.log
-
-cmd_ADDA_adda1: Test Success 2010-12-14 01:13:18
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_ADDA_adda1/detail.log
-
-cmd_XOR_xor0_z: Test Success 2010-12-14 01:13:18
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_XOR_xor0_z/detail.log
-
-cmd_CPL_cpl0: Test Success 2010-12-14 01:13:18
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_CPL_cpl0/detail.log
-
-cmd_OR_or2: Test Success 2010-12-14 01:13:18
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_OR_or2/detail.log
-
-cmd_SLL_sll_oz: Test Success 2010-12-14 01:13:18
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SLL_sll_oz/detail.log
-
-cmd_DC_dc_c0: Test Success 2010-12-14 01:13:18
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_DC_dc_c0/detail.log
-
-cmd_CPL_cpl1_s: Test Success 2010-12-14 01:13:18
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_CPL_cpl1_s/detail.log
-
-cmd_DS_ds: Test Success 2010-12-14 01:13:18
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_DS_ds/detail.log
-
-cmd_JMI_jmi_z: Test Success 2010-12-14 01:13:18
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_JMI_jmi_z/detail.log
-
-cmd_LAD_lad1_o: Test Success 2010-12-14 01:13:18
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_LAD_lad1_o/detail.log
-
-cmd_SRA_sra: Test Success 2010-12-14 01:13:18
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SRA_sra/detail.log
-
-cmd_DC_dc_i1: Test Success 2010-12-14 01:13:18
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_DC_dc_i1/detail.log
-
-err_207: Test Success 2010-12-14 01:13:18
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/err_207/detail.log
-
-cmd_OR_or0_z: Test Success 2010-12-14 01:13:19
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_OR_or0_z/detail.log
-
-cmd_ADDL_addl0_as1: Test Success 2010-12-14 01:13:19
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_ADDL_addl0_as1/detail.log
-
-cmd_SLL_sll_s: Test Success 2010-12-14 01:13:19
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SLL_sll_s/detail.log
-
-cmd_RPOP_rpop: Test Success 2010-12-14 01:13:19
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_RPOP_rpop/detail.log
-
-cmd_SUBA_suba0__o: Test Success 2010-12-14 01:13:19
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SUBA_suba0__o/detail.log
-
-cmd_LAD_lad0: Test Success 2010-12-14 01:13:19
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_LAD_lad0/detail.log
-
-cmd_JOV_jov_o: Test Success 2010-12-14 01:13:19
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_JOV_jov_o/detail.log
-
-err_201: Test Success 2010-12-14 01:13:19
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/err_201/detail.log
-
-cmd_ADDL_addl1: Test Success 2010-12-14 01:13:19
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_ADDL_addl1/detail.log
-
-cmd_ADDA_adda0_az: Test Success 2010-12-14 01:13:19
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_ADDA_adda0_az/detail.log
-
-cmd_DC_dc_i0: Test Success 2010-12-14 01:13:19
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_DC_dc_i0/detail.log
-
-cmd_LD_ld0_l: Test Success 2010-12-14 01:13:19
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_LD_ld0_l/detail.log
-
-cmd_AND_and0: Test Success 2010-12-14 01:13:19
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_AND_and0/detail.log
-
-cmd_ADDA_adda0: Test Success 2010-12-14 01:13:19
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_ADDA_adda0/detail.log
-
-cmd_JZE_jze_z: Test Success 2010-12-14 01:13:19
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_JZE_jze_z/detail.log
-
-cmd_OUT_out: Test Success 2010-12-14 01:13:19
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_OUT_out/detail.log
-
-cmd_SLA_sla: Test Success 2010-12-14 01:13:19
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SLA_sla/detail.log
-
-cmd_LD_ld0: Test Success 2010-12-14 01:13:19
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_LD_ld0/detail.log
-
-cmd_SUBL_subl0: Test Success 2010-12-14 01:13:20
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SUBL_subl0/detail.log
-
-cmd_SRA_sra_os: Test Success 2010-12-14 01:13:20
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SRA_sra_os/detail.log
-
-cmd_SUBA_suba0_ao: Test Success 2010-12-14 01:13:20
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SUBA_suba0_ao/detail.log
-
-cmd_SVC_svc1: Test Success 2010-12-14 01:13:20
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SVC_svc1/detail.log
-
-cmd_JMI_jmi_p: Test Success 2010-12-14 01:13:20
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_JMI_jmi_p/detail.log
-
-cmd_JZE_jze_m: Test Success 2010-12-14 01:13:20
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_JZE_jze_m/detail.log
-
-cmd_DC_dc_i_of: Test Success 2010-12-14 01:13:20
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_DC_dc_i_of/detail.log
-
-cmd_SRA_sra_s: Test Success 2010-12-14 01:13:20
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SRA_sra_s/detail.log
-
-cmd_ADDA_adda2: Test Success 2010-12-14 01:13:20
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_ADDA_adda2/detail.log
-
-cmd_SUBA_suba0__z: Test Success 2010-12-14 01:13:20
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SUBA_suba0__z/detail.log
-
-cmd_XOR_xor2: Test Success 2010-12-14 01:13:20
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_XOR_xor2/detail.log
-
-cmd_CPA_cpa0_z: Test Success 2010-12-14 01:13:20
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_CPA_cpa0_z/detail.log
-
-err_206: Test Success 2010-12-14 01:13:20
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/err_206/detail.log
-
-cmd_SRL_srl_z: Test Success 2010-12-14 01:13:20
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SRL_srl_z/detail.log
-
-cmd_SLA_sla_z: Test Success 2010-12-14 01:13:20
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SLA_sla_z/detail.log
-
-cmd_JUMP_jump_o: Test Success 2010-12-14 01:13:20
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_JUMP_jump_o/detail.log
-
-cmd_ADDL_addl0: Test Success 2010-12-14 01:13:20
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_ADDL_addl0/detail.log
-
-cmd_OR_or1: Test Success 2010-12-14 01:13:20
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_OR_or1/detail.log
-
-cmd_SLA_sla_o: Test Success 2010-12-14 01:13:20
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SLA_sla_o/detail.log
-
-cmd_ADDL_addl0_ao: Test Success 2010-12-14 01:13:21
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_ADDL_addl0_ao/detail.log
-
-cmd_OR_or0: Test Success 2010-12-14 01:13:21
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_OR_or0/detail.log
-
-cmd_ADDL_addl0_lo: Test Success 2010-12-14 01:13:21
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_ADDL_addl0_lo/detail.log
-
-cmd_CPA_cpa0_s: Test Success 2010-12-14 01:13:21
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_CPA_cpa0_s/detail.log
-
-cmd_ADDA_adda0__o: Test Success 2010-12-14 01:13:21
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_ADDA_adda0__o/detail.log
-
-cmd_ADDA_adda0_as0: Test Success 2010-12-14 01:13:21
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_ADDA_adda0_as0/detail.log
-
-cmd_XOR_xor0_s: Test Success 2010-12-14 01:13:21
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_XOR_xor0_s/detail.log
-
-err_202: Test Success 2010-12-14 01:13:21
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/err_202/detail.log
-
-cmd_JOV_jov_p: Test Success 2010-12-14 01:13:21
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_JOV_jov_p/detail.log
-
-cmd_SUBL_subl0__o: Test Success 2010-12-14 01:13:21
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SUBL_subl0__o/detail.log
-
-cmd_SRL_srl_s: Test Success 2010-12-14 01:13:21
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SRL_srl_s/detail.log
-
-cmd_SUBA_suba0_as0: Test Success 2010-12-14 01:13:21
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SUBA_suba0_as0/detail.log
-
-cmd_DS_ds_0: Test Success 2010-12-14 01:13:21
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_DS_ds_0/detail.log
-
-cmd_SUBL_subl0_ao: Test Success 2010-12-14 01:13:21
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SUBL_subl0_ao/detail.log
-
-cmd_ADDL_addl0_az: Test Success 2010-12-14 01:13:21
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_ADDL_addl0_az/detail.log
-
-cmd_SRL_srl_o: Test Success 2010-12-14 01:13:21
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SRL_srl_o/detail.log
-
-cmd_JPL_jpl_z: Test Success 2010-12-14 01:13:21
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_JPL_jpl_z/detail.log
-
-cmd_CALL_call0: Test Success 2010-12-14 01:13:21
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_CALL_call0/detail.log
-
-cmd_JPL_jpl_p: Test Success 2010-12-14 01:13:21
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_JPL_jpl_p/detail.log
-
-cmd_NOP_nop: Test Success 2010-12-14 01:13:22
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_NOP_nop/detail.log
-
-cmd_JZE_jze_o: Test Success 2010-12-14 01:13:22
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_JZE_jze_o/detail.log
-
-cmd_SUBA_suba2: Test Success 2010-12-14 01:13:22
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SUBA_suba2/detail.log
-
-cmd_SUBL_subl0_as1: Test Success 2010-12-14 01:13:22
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SUBL_subl0_as1/detail.log
-
-cmd_JUMP_jump_m: Test Success 2010-12-14 01:13:22
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_JUMP_jump_m/detail.log
-
-cmd_CALL_call1: Test Success 2010-12-14 01:13:22
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_CALL_call1/detail.log
-
-cmd_SUBL_subl1: Test Success 2010-12-14 01:13:22
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SUBL_subl1/detail.log
-
-cmd_SUBL_subl0_as0: Test Success 2010-12-14 01:13:22
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SUBL_subl0_as0/detail.log
-
-cmd_ADDA_adda0_lo: Test Success 2010-12-14 01:13:22
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_ADDA_adda0_lo/detail.log
-
-cmd_CPL_cpl0_ls: Test Success 2010-12-14 01:13:22
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_CPL_cpl0_ls/detail.log
-
-cmd_ADDL_addl0__z: Test Success 2010-12-14 01:13:22
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_ADDL_addl0__z/detail.log
-
-cmd_CPL_cpl0_s: Test Success 2010-12-14 01:13:22
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_CPL_cpl0_s/detail.log
-
-cmd_SRL_srl: Test Success 2010-12-14 01:13:22
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SRL_srl/detail.log
-
-cmd_XOR_xor2_clear: Test Success 2010-12-14 01:13:22
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_XOR_xor2_clear/detail.log
-
-cmd_ST_st1: Test Success 2010-12-14 01:13:22
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_ST_st1/detail.log
-
-cmd_ADDL_addl0_as0: Test Success 2010-12-14 01:13:22
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_ADDL_addl0_as0/detail.log
-
-cmd_SRL_srl_oz: Test Success 2010-12-14 01:13:22
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SRL_srl_oz/detail.log
-
-cmd_CPL_cpl2_s: Test Success 2010-12-14 01:13:22
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_CPL_cpl2_s/detail.log
-
-hello: Test Success 2010-12-14 01:13:22
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/hello/detail.log
-
-cmd_DC_dc_c1: Test Success 2010-12-14 01:13:23
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_DC_dc_c1/detail.log
-
-cmd_CPL_cpl0_z: Test Success 2010-12-14 01:13:23
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_CPL_cpl0_z/detail.log
-
-cmd_JUMP_jump_z: Test Success 2010-12-14 01:13:23
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_JUMP_jump_z/detail.log
-
-cmd_JZE_jze_p: Test Success 2010-12-14 01:13:23
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_JZE_jze_p/detail.log
-
-cmd_LD_ld2: Test Success 2010-12-14 01:13:23
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_LD_ld2/detail.log
-
-cmd_POP_push_pop_1: Test Success 2010-12-14 01:13:23
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_POP_push_pop_1/detail.log
-
-err_208: Test Success 2010-12-14 01:13:23
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/err_208/detail.log
-
-cmd_LAD_lad1: Test Success 2010-12-14 01:13:23
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_LAD_lad1/detail.log
-
-cmd_AND_and2: Test Success 2010-12-14 01:13:23
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_AND_and2/detail.log
-
-cmd_ADDA_adda0__z: Test Success 2010-12-14 01:13:23
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_ADDA_adda0__z/detail.log
-
-cmd_SRA_sra_o: Test Success 2010-12-14 01:13:23
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SRA_sra_o/detail.log
-
-cmd_CPA_cpa0_ls: Test Success 2010-12-14 01:13:23
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_CPA_cpa0_ls/detail.log
-
-cmd_SUBA_suba0_as1: Test Success 2010-12-14 01:13:23
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SUBA_suba0_as1/detail.log
-
-cmd_SLA_sla_os: Test Success 2010-12-14 01:13:23
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_SLA_sla_os/detail.log
-
-cmd_LAD_lad1_s: Test Success 2010-12-14 01:13:23
-Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/cmd_LAD_lad1_s/detail.log
-
diff --git a/test/system/comet2/Report.log b/test/system/comet2/Report.log
deleted file mode 100644 (file)
index 5539509..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-comet2: 150 / 150 tests passed. Detail in /home/kazubito/2010_12/yacasl2/test/system/comet2/COMET2.log
-comet2: All tests are succeded.
diff --git a/test/system/dumpword/DUMPWORD.log b/test/system/dumpword/DUMPWORD.log
deleted file mode 100644 (file)
index bfacb61..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-noopt: Test Success 2010-12-14 01:13:24
-Detail in /home/kazubito/2010_12/yacasl2/test/system/dumpword/noopt/detail.log
-
-a: Test Success 2010-12-14 01:13:24
-Detail in /home/kazubito/2010_12/yacasl2/test/system/dumpword/a/detail.log
-
-l: Test Success 2010-12-14 01:13:24
-Detail in /home/kazubito/2010_12/yacasl2/test/system/dumpword/l/detail.log
-
-chars: Test Success 2010-12-14 01:13:24
-Detail in /home/kazubito/2010_12/yacasl2/test/system/dumpword/chars/detail.log
-
diff --git a/test/system/dumpword/Report.log b/test/system/dumpword/Report.log
deleted file mode 100644 (file)
index 41a6a94..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-dumpword: 4 / 4 tests passed. Detail in /home/kazubito/2010_12/yacasl2/test/system/dumpword/DUMPWORD.log
-dumpword: All tests are succeded.