1 //-----------------------------------------------------------------------------
2 // General-purpose miscellany.
4 // Jonathan Westhues, April 2006.
5 //-----------------------------------------------------------------------------
7 module mux8(sel
, y
, x0
, x1
, x2
, x3
, x4
, x5
, x6
, x7
);
9 input x0
, x1
, x2
, x3
, x4
, x5
, x6
, x7
;
13 always @(x0
or x1
or x2
or x3
or x4
or x5
or x6
or x7
or sel
)