简体   繁体   English

2输入双反相器只用一个非门

[英]2 input dual inverter using only one not gate

How do I make a 2 input dual inverter using only one not gate along with any number of and, or, xor gates?如何使用一个非门以及任意数量的与或异或来制作 2 输入双反相器?

2 input dual inverter 2输入双逆变器

Using this Truth Table , you can do:使用此Truth Table ,您可以执行以下操作:

!A = ((A^B)&B) | !(A&B)
!B = ((A^B)&A) | !(A&B)

where !哪里! is NOT, |不是, | is OR, & is AND, and ^ is XOR.是 OR, &是 AND,而^是 XOR。

See this hand-drawn Circuit Diagram for an implementation.有关实现,请参阅此手绘电路图 I am sure there exist other possible solutions, but this one seems to work.我确信存在其他可能的解决方案,但这个似乎有效。

2 Input Dual Inverter 2 输入双反相器

Simplest solution I could find so far.到目前为止我能找到的最简单的解决方案。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM