赞
踩
与 (取值运算)
x | y | result |
---|---|---|
0 | 0 | 0 |
1 | 0 | 0 |
0 | 1 | 0 |
1 | 1 | 1 |
或(取值运算)
x | y | result |
---|---|---|
0 | 0 | 0 |
1 | 0 | 1 |
0 | 1 | 1 |
1 | 1 | 1 |
非(三态门)
x | result |
---|---|
0 | 1 |
1 | 0 |
异或(加法运算)
x | y | result |
---|---|---|
0 | 0 | 0 |
1 | 0 | 1 |
0 | 1 | 1 |
1 | 1 | 0 |
同或运算(减法计算)
x | y | result |
---|---|---|
0 | 0 | 1 |
1 | 0 | 0 |
0 | 1 | 0 |
1 | 1 | 1 |
一位与运算电路
一位或运算电路
非门运算电路
异或运算电路
同或运算,求负数的补码
电路如下:
参考:https://blog.csdn.net/weixin_37711738/article/details/89639395?utm_term=%E9%80%BB%E8%BE%91%E8%BF%90%E7%AE%97%E6%B3%95%E5%88%99&utm_medium=distribute.pc_aggpage_search_result.none-task-blog-2allsobaiduweb~default-2-89639395&spm=3001.4430
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。