11 - 261 11 - 261
MELSEC-Q
11 INSTRUCTIONS AND FUNCTIONS
(2) Program example for a format 2 control table
100 ' A program example that writes data to device memory of the PLC CPU
110 DIM TBL%(10),A%(20)
:
'Defines arrays
120 TBL%(0)=256
:
'Specifies a format 2 control table
130 TBL%(1)=1
:
'Specifies network number 1
140 TBL%(2)=1
:
'Specifies station number 1
130 TBL%(4)=1
:
'Specifies to write to device memory
140 TBL%(5)=2
:
'Specifies word units
150 TBL%(6)=3
:
'Specifies internal relays M
160 TBL%(7)=0
:
'Specifies the device number
170 TBL%(8)=1
:
'Specifies the number of words points to be
written
180 A%(0)=&H5
:
'Turns M1 and M3 ON and all others OFF
190 PCWT TBL%( ),A%( )
:
'Executes the write operation
200 END