mirror of
https://github.com/usatiuk/nand2tetris.git
synced 2025-10-29 08:37:48 +01:00
init
This commit is contained in:
9
projects/02/FullAdder.cmp
Normal file
9
projects/02/FullAdder.cmp
Normal file
@@ -0,0 +1,9 @@
|
||||
| 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 |
|
||||
Reference in New Issue
Block a user