本文介绍了仅使用NAND,OR,XNOR编写表达式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有2-1多路复用器,我正在尝试写z = s'd0 + sd1
仅使用NAND
,XNOR
和OR
门(不必全部使用).
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).
我尝试简化它,最终得到的是z = NAND(NAND(s', d0), NAND(s, d1))
,但是我不能使用NOT
('
),所以有没有办法在没有NOT
的情况下编写NAND(s', d0)
的方法?
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
?
推荐答案
您不能从NAND构建:
You can build NOT from NAND:
NAND(X,X) == NOT(X)
这篇关于仅使用NAND,OR,XNOR编写表达式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!