Mux Summary: The Mux function selects one from the set of two or more inputs, X0 .. Xn-1 to form the result Z. The width of all data input and output signals is controlled by Width. The width of the select input, S, is chosen automatically. The number of inputs, n, is controlled by NumInputs. The logic is always optimized for minimum possible delay. MuxType is used to select the multiplexor type. Function: Z=S ? Xn-1 : ... : X1 : X0 Signals: Z: Width wide output S: Select input (width chosen automatically to allow full selection) Xi: Width wide inputs (0 <= i < n) Parameters: Name: actual module name NumInputs: The number, n, of input signals (2-256) Width: width of the signals (1-256) MuxType: The architecture (mux, andor, tristate) Verilog Usage: Name(X0, .. Xn-1,S,Z); Version: $Id: Mux.help,v 1.3 1994/09/19 22:43:23 peter Exp $