@Moritz
2019-03-26T03:57:05.000000Z
字数 1140
阅读 389
CSI
课程学习
所有文稿
晶体管
布尔表达式,真值表,逻辑图
半加器/全加器
多路复用器
S-R 锁存器
集成电路
Gates
Circuit
Three notational methods are used to describe the behavior of gates and circuits:
布尔代数
非门
与门
或门
异或门
The XOR, or exclusive OR, gate produces a 0 if its two inputs are the same, and a 1 otherwise. The XOR and OR differ in only one input situation: When both input signals are 1, the OR gate produces a 1 and the XOR produces a 0.
Truth Table of XOR gate:
A | B | X |
---|---|---|
0 | 0 | 0 |
0 | 1 | 1 |
1 | 0 | 1 |
1 | 1 | 0 |
与非门
and NOR 或非门
They are essentially the opposites of the AND and OR gates. The output of a NAND gate is the same as if you took the output of an AND gate and put it through an inverter 逆变器
(a NOT gate).
晶体管
Transistor A device that acts either a wire
导线
or a resistor电阻器
, depending on the voltage level of an input signal.Semiconductor
半导体
Material such as silicon that is neither a good conductor导体
nor a good insulator绝缘子
.