コマンドテストの刷新
[YACASL2.git] / as / cmd / DC / dc_i_o.casl
diff --git a/as/cmd/DC/dc_i_o.casl b/as/cmd/DC/dc_i_o.casl
new file mode 100644 (file)
index 0000000..0b36f5a
--- /dev/null
@@ -0,0 +1,14 @@
+;; DC -32768〜32768の範囲にない10進数値
+MAIN    START
+        RET
+        DC      32767
+        DC      32768
+        DC      65535
+        DC      65536
+        DC      131073          ; 65536 * 2 + 1
+        DC      -32768
+        DC      -32769
+        DC      -65535
+        DC      -65536
+        DC      -131073         ; -65536 * 2 - 1
+        END