
Using simply AND and OR gates are connected to several inputs a, input b, input c, input d, input e
The goal is to get a 8-bit binary value into a 7-segment display decimal
| input a and b | output a and b |
|---|---|
| 0 0 | 0 1 |
| 0 1 | 0 0 |
| 1 0 | 0 0 |
| 1 1 | 1 0 |
| input c | output c |
|---|---|
| 0 | 1 |
| 1 | 0 |
| input d and e | output d |
|---|---|
| 0 1 | 1 |
| 1 0 | 1 |
| 0 0 | 0 |
| 1 1 | 1 |
No external hardware
| # | Input | Output | Bidirectional |
|---|---|---|---|
| 0 | input a | output a | |
| 1 | input b | ||
| 2 | output b | ||
| 3 | |||
| 4 | input c | output c | |
| 5 | |||
| 6 | input d | output d | |
| 7 | input e |