This commit is contained in:
2024-12-12 01:05:57 +03:00
parent c1d75786ef
commit cd93206ad4
9 changed files with 706 additions and 0 deletions

View File

@ -0,0 +1,9 @@
module halfadder (
input A, B,
output Sum, CarryOut
);
xor xor1(Sum, A, B);
and and1(CarryOut, A, B);
endmodule