dp_2to1mx16.v
681 Bytes
/*
*************************************************************************
* *
* Project Reality *
* *
* module: dp_2to1mx16.v *
* description: 16 bit 2 to 1 high performance mux using j_mx21 cells *
* *
* designer: Brian Ferguson *
* date: 3/15/95 *
* *
*************************************************************************
*/
// $Id: dp_2to1mx16.v,v 1.3 2003/01/23 18:51:34 berndt Exp $
module dp_2to1mx16 ( input0, input1, select, output_data );
input [15:0] input0 ;
input [15:0] input1 ;
input select ;
output [15:0] output_data ;
assign output_data = select? input1 : input0;
endmodule // dp_2to1mx16