mirror of
https://github.com/usatiuk/nand2tetris.git
synced 2025-10-28 16:17:48 +01:00
10 lines
378 B
Plaintext
10 lines
378 B
Plaintext
| a | b | c | sum | carry |
|
|
| 0 | 0 | 0 | 0 | 0 |
|
|
| 0 | 0 | 1 | 1 | 0 |
|
|
| 0 | 1 | 0 | 1 | 0 |
|
|
| 0 | 1 | 1 | 0 | 1 |
|
|
| 1 | 0 | 0 | 1 | 0 |
|
|
| 1 | 0 | 1 | 0 | 1 |
|
|
| 1 | 1 | 0 | 0 | 1 |
|
|
| 1 | 1 | 1 | 1 | 1 |
|