Built all the chips except for the ALU.

This commit is contained in:
2021-01-25 20:15:03 -06:00
parent 6591f9d264
commit e0703c9f60
8 changed files with 48 additions and 0 deletions
+2
View File
@@ -14,4 +14,6 @@ CHIP HalfAdder {
PARTS:
// Put you code here:
Xor(a=a, b=b, out=sum);
And(a=a, b=b, out=carry);
}