eloProg - Vers. 1.0
69
NAND
Logical NAND returns an output of 0 (FALSE) if all
the inputs are 1 (TRUE).
In
1
In
2
In
x
Out
0 0 0 1
1 0 0 1
0 1 0 1
1 1 0 1
0 0 1 1
1 0 1 1
0 1 1 1
1 1 1 0
Parameters
Number of inputs
: this is used to set between 2 and 8 inputs.
NOT
Logical NOT inverts the logical status of the input.
In Out
0 1
1 0
OR
Logical OR returns an output of 1 (TRUE) if at least
one of the inputs is 1 (TRUE).
In
1
In
2
In
x
Out
0 0 0 0
1 0 0 1
0 1 0 1
1 1 0 1
0 0 1 1
1 0 1 1
0 1 1 1
1 1 1 1
Parameters
Number of inputs
: this is used to set between 2 and 8 inputs.