LUT2_L.v
1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// $Header: /root/leakn64/depot/rf/hw/flif/xilinx/LUT2_L.v,v 1.1 2003/08/20 23:46:50 berndt Exp $
/*
FUNCTION : 2-inputs LUT
*/
`timescale 100 ps / 10 ps
module LUT2_L (LO, I0, I1);
parameter INIT = 4'h0;
input I0, I1;
output LO;
wire out;
lut2_l_mux4 (out, INIT[3], INIT[2], INIT[1], INIT[0], I1, I0);
buf b3 (LO, out);
specify
(I0 *> LO) = (1, 1);
(I1 *> LO) = (1, 1);
endspecify
endmodule
primitive lut2_l_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