How can I build this circuit on Digital? The XOR logical operation has the following truth table: A | B | A XOR B ---+---+--------- 0 | 0 | 0 0 | 1 | 1 1 | 0 | 1 1 | 1 | 0 That means that A XOR B is 1 (true) when either A or B are 1 (true), but not when they are both true. If you prefer, when exactly one of A or B is 1 (true). Produce a circuit in Digital
How can I build this circuit on Digital?
The XOR logical operation has the following truth table:
A | B | A XOR B
---+---+---------
0 | 0 | 0
0 | 1 | 1
1 | 0 | 1
1 | 1 | 0
That means that A XOR B is 1 (true) when either A or B are 1 (true), but not when they are both true. If you prefer, when exactly one of A or B is 1 (true).
Produce a circuit in Digital that implements this operation.
To solve this problem, you can only use the following Digital components:
- inputs and output (under Components/IO)
- supply voltage and ground (under Components/Wires)
- P- and N-Channel FET (under Components/Switches) - same behavior as PMOS and NMOS
Your circuit should only have 2 inputs and 1 output.
The input for A should be labeled 'A', the input for B should be labeled 'B', and the output should be labeled 'A XOR B'.
NMOS and PMOS are two types of metal-oxide-semiconductor field-effect transistors (MOSFETs) used in digital and analog electronic circuits. They are the fundamental building blocks of complementary metal-oxide-semiconductor (CMOS) technology, which is widely used in integrated circuits (ICs). NMOS and PMOS transistors have complementary characteristics, and together they form the basis for most digital logic gates in CMOS circuits:
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 2 images