1

Show the OR gate operation by only using de-multiplexers. I know it is quite impractical implementation but these types of questions are being asked in placement tests.

http://i.stack.imgur.com/mQAZD.png

check out OR gate truth table if you want from the above link

4

2 回答 2

1

这是使用 demux 的或门实现

取 1*2 解复用器:输入作为 1 选择输入作为 A,然后在解复用器的第 0 个输出处:Not(A.1) = ABar

与 BBar 从 B 获取的方式类似。

现在采用另一个 1*4 解复用器:输入作为 1 个选择输入:- ABar 和 BBar

然后在 demux 的第 0 个输出处: Not(ABar.BBar.1) = A+B

于 2014-03-05T08:34:41.690 回答
0

如果您将 A&B 作为输入提供给 1-4 解复用器,那么当 A=0 和 B=0 时为 1 的输出将是您想要的 OR 的否定;将其输入 1-2 解复用器,然后与您的输入相反的输出将是您的 OR。(对不起,我不能更准确;不确定您使用什么命名约定来命名您的死亡。)

于 2014-02-13T15:13:36.967 回答