How to make a 2 input XOR gate with only 2 input MUX and Inverter?
MUX(A, B, S) = A*S + B*S' # when S=1, output A XOR(A, B) = A^B = A*B' + A'*B = MUX(A', A , B) # Note: A'=NOT(A)
版权所有 © 非是非, 2007~2015