MUXF7.v
484 Bytes
// $Header: /root/leakn64/depot/rf/hw/debug/xilinx/MUXF7.v,v 1.1 2003/04/01 21:47:34 berndt Exp $
/*
FUNCTION : 2 to 1 Multiplexer for Carry Logic
*/
`timescale 100 ps / 10 ps
module MUXF7 (O, I0, I1, S);
output O;
reg o_out;
input I0, I1, S;
buf B1 (O, o_out);
always @(I0 or I1 or S) begin
if (S)
o_out <= I1;
else
o_out <= I0;
end
specify
(I0 => O) = (1, 1);
(I1 => O) = (1, 1);
(S => O) = (1, 1);
endspecify
endmodule