bl_mxpm.v 715 Bytes
// Module instances modified by /home/rws/workarea/rf/sw/bbplayer/tools/necprimfix 
//
//    24 instances of mx21d1h changed to j_mx21.
//

////////////////////////////////////////////////////////////////////////
//
// Project Reality
//
// module:	bl_mxpm
// description:	8 bit 4->1 mux for blend unit.
//
// designer:	Phil Gossett
// date:	8/13/94
//
////////////////////////////////////////////////////////////////////////

module bl_mxpm (s, i0i, i1i, i2i, i3i, z);

input [1:0] s;
input [7:0] i0i;
input [7:0] i1i;
input [7:0] i2i;
input [7:0] i3i;
output [7:0] z;

wire [7:0] mxa;
wire [7:0] mxb;

assign mxa = s[0]? i1i : i0i;
assign mxb = s[0]? i3i : i2i;
assign z = s[1]? mxb : mxa;

endmodule // bl_mxpm