This commit is contained in:
2024-07-05 19:15:16 +03:00
parent 492a55d360
commit c1f0851a45
136 changed files with 11599 additions and 0 deletions

9
labs/lab3_solution/ha.v Normal file
View File

@ -0,0 +1,9 @@
module ha(
input X, Y,
output S, C
);
xor(S, X, Y);
and(C, X, Y);
endmodule