From 10096d35c804540c83cffc68fb888cfa8bf1bf38 Mon Sep 17 00:00:00 2001 From: Erick Date: Fri, 4 Mar 2022 23:59:23 +0100 Subject: [PATCH] minor fix --- gates/mux16.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gates/mux16.v b/gates/mux16.v index 9bc3795..99622ac 100644 --- a/gates/mux16.v +++ b/gates/mux16.v @@ -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);