bl_mux8.v
429 Bytes
////////////////////////////////////////////////////////////////////////
//
// Project Reality
//
// module: bl_mux8
// description: 8 bit 2->1 mux for blend unit.
//
// designer: Phil Gossett
// date: 8/11/94
//
////////////////////////////////////////////////////////////////////////
module bl_mux8 (s, i0i, i1i, z);
input s;
input [7:0] i0i;
input [7:0] i1i;
output [7:0] z;
assign z = s? i1i : i0i;
endmodule // bl_mux8