Archived
1
0

various fixes

This commit is contained in:
Erick
2022-03-04 01:38:03 +01:00
parent f598d2d71b
commit 53170f5c5a
25 changed files with 65 additions and 264 deletions
+7 -7
View File
@@ -3,13 +3,13 @@ module and8way(out, i0, i1, i2, i3, i4, i5, i6, i7);
output out;
wire tmp01, tmp23, tmp45, tmp67, tmp0123, tmp4567;
and(tmp01, i0, i1);
and(tmp23, i2, i3);
and(tmp45, i4, i5);
and(tmp67, i6, i7);
and andA(tmp01, i0, i1);
and andB(tmp23, i2, i3);
and andC(tmp45, i4, i5);
and andD(tmp67, i6, i7);
and(tmp0123, tmp01, tmp23);
and(tmp4567, tmp45, tmp67);
and andAB(tmp0123, tmp01, tmp23);
and andCD(tmp4567, tmp45, tmp67);
and(out, tmp0123, tmp4567);
and andFinal(out, tmp0123, tmp4567);
endmodule