Did a few more chips that I forgot about.

This commit is contained in:
2021-01-25 13:49:35 -06:00
parent 77c62c3504
commit 66bd1e5cdb
8 changed files with 83 additions and 0 deletions
+7
View File
@@ -14,4 +14,11 @@ CHIP Or8Way {
PARTS:
// Put your code here:
Or(a=in[0], b=in[1], out=out1);
Or(a=in[2], b=in[3], out=out2);
Or(a=in[4], b=in[5], out=out3);
Or(a=in[6], b=in[7], out=out4);
Or(a=out1, b=out2, out=out5);
Or(a=out3, b=out4, out=out6);
Or(a=out5, b=out6, out=out);
}