Archived
1
0

minor fix

This commit is contained in:
Erick
2022-03-04 23:59:23 +01:00
parent d259cdab06
commit 10096d35c8
+1 -1
View File
@@ -1,7 +1,7 @@
module mux16(y16, a16, b16, sel);
input [15:0] a16;
input[15:0] b16;
input [1:0]sel;
input sel;
output [15:0] y16;
mux(y16[0], a16[0], b16[0], sel);