Table Of Contents

Previous topic

Port Access Processor Blocks

Next topic

Complex Processor Blocks

This Page

Comparison Processor Blocks


Equal ()

# Switch is on
[ 1, 1 ] >> Equal () >> Switch;

# Switch is off
[ 1, 0 ] >> Equal () >> Switch;

Greater ()

# Switch is on
[ 1, 0 ] >> Greater () >> Switch;

# Switch is off
[ 0, 1 ] >> Greater () >> Switch;

# Switch is off
[ 1, 1 ] >> Greater () >> Switch;

----

GreaterOrEqual ()

# Switch is on
[ 1, 0 ] >> GreaterOrEqual () >> Switch;

# Switch is off
[ 0, 1 ] >> GreaterOrEqual () >> Switch;

# Switch is on
[ 1, 1 ] >> GreaterOrEqual () >> Switch;

Less ()

# Switch is on
[ 0, 1 ] >> Less () >> Switch;

# Switch is off
[ 1, 0 ] >> Less () >> Switch;

# Switch is off
[ 1, 1 ] >> Less () >> Switch;

LessOrEqual ()

# Switch is on
[ 0, 1 ] >> LessOrEqual () >> Switch;

# Switch is off
[ 1, 0 ] >> LessOrEqual () >> Switch;

# Switch is on
[ 1, 1 ] >> LessOrEqual () >> Switch;

NotEqual ()

# Switch is on
[ 0, 1 ] >> NotEqual () >> Switch;

# Switch is off
[ 1, 1 ] >> NotEqual () >> Switch;