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
+13
View File
@@ -0,0 +1,13 @@
module nand3way(y16, a16, b16, c16);
input a16;
input b16;
input c16;
output y16;
wire tmp0, tmp1
nand(tmp0, a16, b16);
nand(tmp1, tmp0, tmp0);
nand(y16, tmp1, c16);
endmodule