6-3SectionProgramming Example
109
6-3-3 Programming Procedures
The example program will be written to the CPM2B according to the mnemonic
list in 6-3-2 Example Program. The procedure is performed beginning with the
initial display. (Clear the memory before entering a new program.)
Note If an error occurs while inputting the program, refer to the Programming Manual
for details on correcting the error.
(1) Inputting the Self-holding Bit
1, 2, 3... 1. Input the normally open condition IR 00000.
(It isnt necessary to input leading zeroes.)
LD 00000
LD 00000
WRITE 00001READ
NOP (000)
2. Input the OR condition IR 20000.
OR C2A0A0A0A000001
OR 20000
WRITE 00002READ
NOP (000)
3. Input the normally closed AND condition C000.
(It isnt necessary to input leading zeroes.)
AND NOT CNT 00002
AND NOT CNT 000
WRITE 00003READ
NOP (000)
4. Input the OUT instruction IR 20000.
OUT C2A0A0A0A000003
OUT 20000
WRITE 00004READ
NOP (000)
(2) Inputting the One-second Timer
1, 2, 3... 1. Input the normally open condition IR 20000.
LD C2A0A0A0A000004
LD 20000
WRITE 00005READ
NOP (000)
2. Input the normally closed AND condition T002.
(It isnt necessary to input leading zeroes.)
AND NOT TIM C200005
AND NOT TIM 002
WRITE 00006READ
NOP (000)
3. Input the 1-second timer T001.
TIM B100006
TIM 001
WRITE 00006 TIM DATA
#0000