Archived
1
0

Grouped the gates and corrected xnor16.v nor16.v (#6)

Alright!
This commit is contained in:
Konstantin
2022-08-26 15:40:32 +02:00
committed by GitHub
parent 613b7710c7
commit 6d8b27dac8
22 changed files with 18 additions and 18 deletions
+11
View File
@@ -0,0 +1,11 @@
'include "or4way.v"
module or8way(out4, i0, i1, i2, i3, i4, i5, i6, i7);
input i0, i1, i2, i3, i4, i5, i6, i7;
output out;
wire tmp0, tmp1;
or4way(tmp0, i0, i1, i2, i3);
or4way(tmp1, i4, i5, i6, i7);
or(out, tmp0, tmp1);
endmodule