URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [mp3/] [lib/] [xilinx/] [unisims/] [LUT2.v] - Rev 1765
Compare with Previous | Blame | View Log
// $Header: /home/marcus/revision_ctrl_test/oc_cvs/cvs/or1k/mp3/lib/xilinx/unisims/LUT2.v,v 1.1.1.1 2001-11-04 18:59:48 lampret Exp $ /* FUNCTION : 2-inputs LUT */ `timescale 100 ps / 10 ps `celldefine module LUT2 (O, I0, I1); parameter INIT = 4'h0; input I0, I1; output O; wire out; lut2_mux4 (out, INIT[3], INIT[2], INIT[1], INIT[0], I1, I0); buf b3 (O, out); specify (I0 *> O) = (1, 1); (I1 *> O) = (1, 1); endspecify endmodule `endcelldefine primitive lut2_mux4 (O, d3, d2, d1, d0, s1, s0); output O; input d3, d2, d1, d0; input s1, s0; table // d3 d2 d1 d0 s1 s0 : O; ? ? ? 1 0 0 : 1; ? ? ? 0 0 0 : 0; ? ? 1 ? 0 1 : 1; ? ? 0 ? 0 1 : 0; ? 1 ? ? 1 0 : 1; ? 0 ? ? 1 0 : 0; 1 ? ? ? 1 1 : 1; 0 ? ? ? 1 1 : 0; ? ? 0 0 0 x : 0; ? ? 1 1 0 x : 1; 0 0 ? ? 1 x : 0; 1 1 ? ? 1 x : 1; ? 0 ? 0 x 0 : 0; ? 1 ? 1 x 0 : 1; 0 ? 0 ? x 1 : 0; 1 ? 1 ? x 1 : 1; 0 0 0 0 x x : 0; 1 1 1 1 x x : 1; endtable endprimitive