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

12
labs/lab3_solution/fa.v Normal file
View File

@ -0,0 +1,12 @@
module fa(
input X, Y, Z,
output S, C
);
wire W0, W1, W2;
ha h0(X, Y, W0, W1);
ha h1(W0, Z, S, W2);
or(C, W1, W2);
endmodule