User guide

WintDrive
Description
It compares the data read by input port
a
with the data read by input port
b.
If
a
<
b
it shows 0 in output port o
If
a
=
b
it shows 1 in output port o
If
a
>
b
it shows 2 in output port o
if(a<b)
0 = 0;
elseif(a==b)
o= 1;
elseif(g>2)
0=2;
Input ports
name type
alternative type function
a
int
Data
a
to be compared
b
int
Data
b
to be compared
wo129\
Output ports
name type
alternative type function
0
int
Result
of the comparison
TV0130
Parameters
1
No parameters
103