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
+3
View File
@@ -14,4 +14,7 @@ CHIP FullAdder {
PARTS:
// Put you code here:
HalfAdder(a=a, b=b, sum=sum1, carry=carry1);
HalfAdder(a=sum1, b=c, sum=sum, carry=carry2);
Xor(a=carry1, b=carry2, out=carry);
}