eloProg - Vers. 1.0
70
NOR
Logical NOR returns an output of 0 (FALSE) if at
least one of the inputs is 1 (TRUE).
In
1
In
2
In
x
Out
0 0 0 1
1 0 0 0
0 1 0 0
1 1 0 0
0 0 1 0
1 0 1 0
0 1 1 0
1 1 1 0
Parameters
Number of inputs
: this is used to set between 2 and 8 inputs.
XOR
Logical XOR returns an output 0 (FALSE) if the
input's number at 1 (TRUE) is even or the inputs
are all 0 (FALSE).
In
1
In
2
Inx Out
0 0 0 0
1 0 0 1
0 1 0 1
1 1 0 0
0 0 1 1
1 0 1 0
0 1 1 0
1 1 1 1
Parameters
Number of inputs
: this is used to set between 2 and 8 inputs.
XNOR
Logical XNOR returns an output 1 (TRUE) if the
input's number at 1 (TRUE) is even or the inputs
are all 0 (FALSE).
In1 In2 Inx Out
0 0 0 1
1 0 0 0
0 1 0 0
1 1 0 1
0 0 1 0
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.