Pattern A |
|
In case that the variable mode is used, the setting contents of the instructions will be changed after conversion.
|
- |
Before Conversion |
|
|
Variable
|
Variable Type
|
IntArr_a
|
Integer Array-Type
|
Int_b
|
Integer-Type
|
Int_,f
|
Integer-Type
|
Real_d
|
Real-Type
|
|
|
- |
After Conversion |
|
1. |
The integer array variable "IntArr_a" and "Int_b" to specify the element number are combined. "IntArr_a[Int_b]" is allocated.
|
2. |
"Int_c" to specify the number of the arrays is specified. |
|
 |
|
Pattern B |
|
With GP-Pro EX, variables with different lengths can not be allocated on one instruction. In case that the bit lengths of variables allocated on SUM instruction are different, the convert instruction to match the variable lengths is added and converted.
|
-
|
Before Conversion |
|
|
Variable
|
Variable Type
|
IntArr_a
|
Integer Array-Type
|
Int_b.B[0]
|
Integer-Type
(Specified Byte)
|
Int_,f.B[0]
|
Integer-Type
(Specified Byte)
|
Int_d.B[0]
|
Integer-Type
(Specified Byte)
|
|
|
- |
After Conversion |
|
1. |
An instruction to copy the data of "Int_b.B[0]" to 8 lower bits "Int08TmpTran(0).B[0]" of the integer variable "Int08TmpTran(0)" is created.
|
2. |
An instruction to copy the data of "Int_c.B[0]" to 8 lower bits "Int08TmpTran(0).B[0]" of the integer variable "Int08TmpTran(0)" is created.
|
3. |
The sum for the number of "Int08TmpTran(1)" from the elementary number "Int08TmpTran(0)" of "IntArr_a" is stored in "Int32TmpTran(0)".
|
4. |
An instruction to copy the integer data copied on "Int32TmpTran(0)" to "Int_d.B[0]" is created. |
|

|
|
Pattern C |
|
With GP-Pro EX, device names can not be changed. In case that the fix variable mode is used, the device names are converted to the ones that have been defined in advance.
|
|
 |
|
MEMO |
* |
The integer variables "Int08TmpTran(0)", "Int08TmpTran(1)", and "Int32TmpTran(0)" are created automatically when conversion. |
|
|