I have a 2-1 mux and I'm trying to write z = s'd0 + sd1
using only NAND
, XNOR
, and OR
gates (not necessarily all of them).
I tried simplifying it and what I ended up with is z = NAND(NAND(s', d0), NAND(s, d1))
, but I can't use NOT
('
), so is there a way to write NAND(s', d0)
without the NOT
?
You can build NOT from NAND:
NAND(X,X) == NOT(X)