·396·
Programming manual
CNC 8055
CNC 8055i
14.
PROGRAM CONTROL INSTRUCTIONS
·M· & ·EN· MODELS
SOFT: V02.2X
Assignment instructions
14.1 Assignment instructions
This is the simplest type of instruction and can be defined as:
(target = arithmetic expression)
A local or global parameter or a read-write variable may be selected as target. The arithmetic
expression may be as complex as required or a simple numerical constant.
(P102 = FZLOY)
(ORGY 55 = (ORGY 54 + P100))
In the specific case of designating a local parameter using its name (A instead of P0, for example)
and the arithmetic expression being a numerical constant, the instruction can be abbreviated as
follows:
(P0=13.7) ==> (A=13.7) ==> (A13.7)
Within a single block, up to 26 assignments can be made to different targets, a single assignment
being interpreted as the set of assignments made to the same target.
(P1=P1+P2, P1=P1+P3, P1=P1*P4, P1=P1/P5)
It is the same as saying:
(P1=(P1+P2+P3)*P4/P5).
The different assignments which are made in the same block will be separated by commas ",".