Rockwell Automation 1779-KP3R DATA HIGHWAY II User Manual
Page 51

Programming
Chapter 3
3Ć16
The following table contains examples of using the TMOVE command to
move a word:
To move data
from:
Command line example:
Explanation:
PLC-3 to PLC-2 TMOVE FROM :66$010 TO $B2:3 or
TM F :66$010 T $B2:3
Transfers word 010 from node 66 to
word 3 of binary file 2.
PLC-3 to PLC-2 TMOVE FROM $B2:3 TO :66$010 or
TM F $B2:3 T :66$010
Transfers word 3 of binary file 2 to
word address 010 at node 66.
PLC-3 to PLC-3 TMOVE FROM $B2:3 TO :76$I4:50 or
TM F $B2:3 T :76$I4:50
Transfers word 3 of binary file 2 to
word address 50 of input file 4.
The following table contains examples of using the TMOVE command to
move a block of words:
To move data
from:
Command line example:
Explanation:
PLC-3 to PLC-2 TMOVE FROM :66$010,18 TO $B2:3
or
TM F :66$010,18 T $B2:3
Transfers 18 words beginning at
word 010 at node 66 to word 3 of
binary file 2.
PLC-3 to PLC-2 TMOVE FROM $B2:3 TO :66$010,1024
or
TM F $B2:3 T :66$010,1024
Transfers 1024 words beginning at
word 3 binary file 2 to word address
010 at node 66.
PLC-3 to PLC-3 TMOVE FROM :76$I4:50 TO $B2:3,5
or
TM F :76$I4:50 T $B2:3,5
Transfers 5 words from word 50 of
input file 4 at node 76 to word 3 of
binary file 2.
PLC-3 to PLC-2 TMOVE FROM $B2:3 TO :76$010,5 or
TM F $B2:3 T :76$010,5
Transfers 5 words beginning at word
3 of binary file 2 to word 010 at node
76.