用74ls153和与非门74HC00实现全加器
时间: 2024-04-21 14:30:17 浏览: 247
全加器可以用两个74LS153和一些与非门74HC00实现。以下是电路图和真值表:
![全加器电路图](https://img-blog.csdnimg.cn/da8c7d6f3e6d4c3d8ddae907b7b4c9fb.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk=,size_16,text_c2hhbm5hbmh1YWl8YmxvZw==,color_FFFFFF,t_70,g_se,x_16)
| A | B | C<sub>in</sub> | C<sub>out</sub> | S |
| - | - | -------------- | ---------------- | - |
| 0 | 0 | 0 | 0 | 0 |
| 0 | 0 | 1 | 0 | 1 |
| 0 | 1 | 0 | 0 | 1 |
| 0 | 1 | 1 | 1 | 0 |
| 1 | 0 | 0 | 0 | 1 |
| 1 | 0 | 1 | 1 | 0 |
| 1 | 1 | 0 | 1 | 0 |
| 1 | 1 | 1 | 1 | 1 |
其中,C<sub>in</sub> 为进位输入,C<sub>out</sub> 为进位输出,S 为和输出。
74LS153是一个可编程多路复用器。这里我们使用两个74LS153,一个用来选择 A 和 B 作为输入,另一个用来选择进位输入或者 1 作为输入。
这个电路中,输入 A 和 B 分别经过两个多路复用器的选择,然后分别与选通信号相与,得到两个中间结果 P 和 G。这两个结果经过与非门的计算,得到 C<sub>out</sub>。同时,经过异或门的计算,得到 S。
具体的实现可以参考以下电路图(注意,74HC00的线路接法需要参考器件手册):
![全加器电路图2](https://img-blog.csdnimg.cn/7ad4783c3fc44f5e8c7f3cfc4b4e8a3b.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk=,size_16,text_c2hhbm5hbmh1YWl8YmxvZw==,color_FFFFFF,t_70,g_se,x_16)
阅读全文