URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [branches/] [mp3_stable/] [mp3/] [lib/] [xilinx/] [unisims/] [MUXF8_L.v] - Rev 1765
Compare with Previous | Blame | View Log
// $Header: /home/marcus/revision_ctrl_test/oc_cvs/cvs/or1k/mp3/lib/xilinx/unisims/MUXF8_L.v,v 1.1.1.1 2001-11-04 18:59:49 lampret Exp $ /* FUNCTION : 2 to 1 Multiplexer for Carry Logic */ `timescale 100 ps / 10 ps `celldefine module MUXF8_L (LO, I0, I1, S); parameter cds_action = "ignore"; output LO; reg lo_out; input I0, I1, S; buf B1 (LO, lo_out); always @(I0 or I1 or S) begin if (S) lo_out <= I1; else lo_out <= I0; end specify (I0 => LO) = (1, 1); (I1 => LO) = (1, 1); (S => LO) = (1, 1); endspecify endmodule `endcelldefine