summaryrefslogtreecommitdiff
path: root/ldmicro/reg/tests/contacts.ld
diff options
context:
space:
mode:
authorakshay-c2019-01-30 12:23:44 +0530
committerakshay-c2019-01-30 12:23:44 +0530
commit4196481f74afb84e5cc59cdf00c06c1ca1becab7 (patch)
treeb531deb0466897691f08f9076b7012592f026664 /ldmicro/reg/tests/contacts.ld
downloadLDmicroQt-4196481f74afb84e5cc59cdf00c06c1ca1becab7.tar.gz
LDmicroQt-4196481f74afb84e5cc59cdf00c06c1ca1becab7.tar.bz2
LDmicroQt-4196481f74afb84e5cc59cdf00c06c1ca1becab7.zip
First commit
Diffstat (limited to 'ldmicro/reg/tests/contacts.ld')
-rw-r--r--ldmicro/reg/tests/contacts.ld41
1 files changed, 41 insertions, 0 deletions
diff --git a/ldmicro/reg/tests/contacts.ld b/ldmicro/reg/tests/contacts.ld
new file mode 100644
index 0000000..07dd6a1
--- /dev/null
+++ b/ldmicro/reg/tests/contacts.ld
@@ -0,0 +1,41 @@
+LDmicro0.1
+MICRO=Microchip PIC16F876 28-PDIP or 28-SOIC
+CYCLE=10000
+CRYSTAL=4000000
+BAUD=2400
+COMPILED=C:\depot\ldmicro\reg\expected\contacts.hex
+
+IO LIST
+ Xa at 2
+ Xb at 3
+ Xc at 4
+ Xd at 5
+ Xe at 6
+ Yf at 11
+ Yg at 7
+ Yh at 12
+END
+
+PROGRAM
+RUNG
+ COMMENT All types of contacts (NO, NC), and all types of coils (normal, inverted, set,\r\nreset); also test series and parallel combinations.
+END
+RUNG
+ CONTACTS Xa 0
+ COIL Yf 0 0 0
+END
+RUNG
+ PARALLEL
+ CONTACTS Xb 0
+ CONTACTS Xc 0
+ END
+ COIL Yg 0 1 0
+END
+RUNG
+ CONTACTS Xd 0
+ CONTACTS Xe 1
+ PARALLEL
+ COIL Yg 0 0 1
+ COIL Yh 1 0 0
+ END
+END