User manual
Publication LOGIX-AP010B-EN-P - May 2010 87
Software Conversions Instructions Chapter 3
Block Calls
Function S5 RSLogix
Operand 1 F10.3 data_bit1
Operand 2 PB10 Alarms
S5 Statement List
16 bit fixed point numbers
RSLogix 5000 Structured Text
In the following example the code will jump to PB 10 if F10.3 =1.
A F10.3
JC PB10
In the following example the code will
jump to the Alarms routine if data_bit1
=1.
if data_bit1 then
JSR (Alarms);
end_if;
In the following example the code will jump to PB 10 regardless of the
state of F10.3
A F10.3
JU PB10
In the following example the code will
jump to the Alarms routine
unconditionally.
JSR (Alarms);
SIMATIC S5 - Ladder
Conditional Jump
Unconditional Jump
RSLogix 5000 - Ladder
Conditional Jump
Unconditional Jump