コマンドテストCASLファイルの追加、整理
[YACASL2.git] / as / cmd / AND / and2.casl
diff --git a/as/cmd/AND/and2.casl b/as/cmd/AND/and2.casl
new file mode 100644 (file)
index 0000000..91ea8cf
--- /dev/null
@@ -0,0 +1,9 @@
+;;; AND r1,r2
+MAIN    START
+        LD      GR1,A
+        LD      GR2,B
+        AND     GR1,GR2
+        RET
+A       DC      #3000
+B       DC      #4FFF
+        END