CASLアプリを格納するas/app、未整理のCASLファイルを格納するmiscを作成。casl2libのテストを追加
[YACASL2.git] / as / macro / out / hello1.casl
diff --git a/as/macro/out/hello1.casl b/as/macro/out/hello1.casl
deleted file mode 100644 (file)
index a697251..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-MAIN    START
-        PUSH    0,GR1
-        PUSH    0,GR2
-        LAD     GR1,OBUF
-        LAD     GR2,LEN
-        SVC     2
-        LAD     GR1,=#A
-        LAD     GR2,=1
-        SVC     2
-        POP     GR2
-        POP     GR1
-        RET
-OBUF    DC      'Hello, World!'
-LEN     DC      13
-        END