=– Assign a TML variable with the negate of another TML variable |
Syntax
VAR16S: source integer variable VAR32D: destination long/fixed variable VAR32S: source long/fixed variable Binary code
Execution Copies the negate of a 16-bit or 32-bit value from the source to the destination
Example int Var1; long Var2; ... Var1 = - Var1; Var2 = -Var2;
|