We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ead59d3 commit a6815b3Copy full SHA for a6815b3
lib/adder/full_adder/s_full_adder.v
@@ -0,0 +1,4 @@
1
+module s_full_adder(input A, B, Ci, output Co, S);
2
+ assign S = A ^ B ^ Ci;
3
+ assign Co = (A & B) + (B & Ci) + (A & Ci);
4
+endmodule
0 commit comments