
AND are connected to input c and b , NOT is connected to input a, OR gates are connected to input b and c.
Set the inputs and check the outputs match with the expected results:
| Input a | input b | input c | output AND | output NOT | output OR |
0 0 0 0 1 0
0 0 1 0 1 1
0 1 0 0 1 1
0 1 1 1 1 1
1 0 0 0 0 0
1 0 1 0 0 1
1 1 0 0 0 1
1 1 1 1 0 1
List external hardware used in your project (e.g. PMOD, LED display, etc), if any
| # | Input | Output | Bidirectional |
|---|---|---|---|
| 0 | input a | output not | |
| 1 | input b | output and | |
| 2 | input c | output or | |
| 3 | |||
| 4 | |||
| 5 | |||
| 6 | |||
| 7 |