アセンブラファイルとテストの整理
[YACASL2.git] / as / CMD / ld4.casl
diff --git a/as/CMD/ld4.casl b/as/CMD/ld4.casl
new file mode 100644 (file)
index 0000000..d6723d6
--- /dev/null
@@ -0,0 +1,9 @@
+; LDコマンド
+MAIN   START   BEGIN
+BEGIN  LD      GR1,A
+        LD      GR2,B
+        ADDL    GR1,GR2
+        RET
+A      DC      32767
+B       DC      32675
+       END