4 bit mux input/outputs

multiplexer

If i have a 4 input mux with the output being in the form of

S1 AND NOT(s0)

MY truth table therefore looks like the following (remember NOT(S0)).

S1   S0   X
0    0    0A
0    1    0B
1    0    1C
1    1    0D

Does that mean that the inputs have to be A=0 B =0 C=1 and D=0 in order for the output to be the above boolean equation?

Best Answer

Yes, that's how you would implement the logic function with a multiplexer.

Related Topic