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
+9
View File
@@ -0,0 +1,9 @@
module demux(y, z, a, sel);
input a, sel;
output y, z;
wire notSel;
not(notSel, sel);
and(z, a, sel);
and(y, a, notSel);
endmodule