Domino Computer
a CS 3102 Project
The AND gate is true when both of its inputs are true.
A | B | A ∧ B |
---|---|---|
0 | 0 | 0 |
0 | 1 | 0 |
1 | 0 | 0 |
1 | 1 | 1 |
The OR gate is true when either (or both) inputs are true.
A | B | A ∨ B |
---|---|---|
0 | 0 | 0 |
0 | 1 | 1 |
1 | 0 | 1 |
1 | 1 | 1 |
The NOT Gate outputs the opposite of its input.
A | ¬ A |
---|---|
0 | 1 |
1 | 0 |
The NAND gate is false when both of its inputs are true and true otherwise.
A | B | A NAND B |
---|---|---|
0 | 0 | 1 |
0 | 1 | 1 |
1 | 0 | 1 |
1 | 1 | 0 |