Files
nand-to-tetris/projects/02/HalfAdder.cmp
T
2021-01-18 11:27:30 -06:00

6 lines
175 B
Plaintext

| a | b | sum | carry |
| 0 | 0 | 0 | 0 |
| 0 | 1 | 1 | 0 |
| 1 | 0 | 1 | 0 |
| 1 | 1 | 0 | 1 |