cc_mux4.v
648 Bytes
////////////////////////////////////////////////////////////////////////
//
// Project Reality
//
// module: cc_mux4
// description: 4 bit 2->1 mux for color combine unit.
//
// designer: Phil Gossett
// date: 6/25/94
//
////////////////////////////////////////////////////////////////////////
module cc_mux4 (s, i0i, i1i, z);
input s;
input [3:0] i0i;
input [3:0] i1i;
output [3:0] z;
mx21d1h mx4b0 (.s(s), .i0(i0i[0]), .i1(i1i[0]), .z(z[0]));
mx21d1h mx4b1 (.s(s), .i0(i0i[1]), .i1(i1i[1]), .z(z[1]));
mx21d1h mx4b2 (.s(s), .i0(i0i[2]), .i1(i1i[2]), .z(z[2]));
mx21d1h mx4b3 (.s(s), .i0(i0i[3]), .i1(i1i[3]), .z(z[3]));
endmodule // cc_mux4