8. Function Commands
DNEG, DNEGP
- 197 -
Program example
(1) Program to subtract D20 from D10 when XA turns ON and obtain an absolute value when the
results are negative.
D20
D10
D-
DNEG
D10
XA
Subtracts D20, 21 from D10, 11.
15
D20
XA
10
D<
M3
M3 turns ON when D10, 11 < D20, 21
D10
D10
M3
The absolute value (complement of 2)
when M3 turns ON is obtained.
Coding
No. of
steps
Com-
mand
Device
10 LD XA
11 ANDD< D10 D20
14 OUT M3
15 LD XA
16 D- D10 D20 D10
20 AND M3
21 DNEG D10
23