6 DriveProgramming Commands
6 - 26
DriveProgramming User’s Manual (I622-E1)
Example
* (Multiplication)
Command Description Argument
Multiplies <value 1> by <value 2>. Result: any variable
Value 1
: any variable or constant (range
−
128 to 127)
Value 2: any variable or constant
(range −2,147,483,648 to 2,147,483,647)
Format
Flowchart method Text language method
↓
<result> : = <value 1> * <value 2>
Note If an overflow or underflow occurs, the DriveProgramming detects it as an error. Take neces-
sary measures in the application so that they do not occur.
Flowchart Text
Block number
Operation
1 Assigns 2 to U(00).
2 Assigns 500 to U(01).
3 Assigns the product of U(00) and U(01) to U(02).
<result> : = <value 1> * <value 2>