-
Notifications
You must be signed in to change notification settings - Fork 10
/
74_cmp.v
200 lines (160 loc) · 4.39 KB
/
74_cmp.v
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
(* techmap_celltype = "$lt" *)
module _80_74HC85_lt (A, B, Y);
parameter A_SIGNED = 0;
parameter B_SIGNED = 0;
parameter A_WIDTH = 0;
parameter B_WIDTH = 0;
parameter Y_WIDTH = 0;
input [A_WIDTH-1:0] A;
input [B_WIDTH-1:0] B;
output [Y_WIDTH-1:0] Y;
wire _TECHMAP_FAIL_ = A_WIDTH <= 3 && B_WIDTH <= 3;
localparam MAX_WIDTH = (A_WIDTH > B_WIDTH) ? A_WIDTH : B_WIDTH;
localparam WIDTH = ((MAX_WIDTH + 3) / 4) * 4;
wire [MAX_WIDTH-1:0] A_buf, B_buf;
\$pos #(.A_SIGNED(A_SIGNED), .A_WIDTH(A_WIDTH), .Y_WIDTH(MAX_WIDTH)) A_conv (.A(A), .Y(A_buf));
\$pos #(.A_SIGNED(B_SIGNED), .A_WIDTH(B_WIDTH), .Y_WIDTH(MAX_WIDTH)) B_conv (.A(B), .Y(B_buf));
wire [WIDTH-1:0] AA = A_buf;
wire [WIDTH-1:0] BB = B_buf;
wire [WIDTH:0] G;
wire [WIDTH:0] E;
wire [WIDTH:0] L;
assign G[0] = 0;
assign E[0] = 1;
assign L[0] = 0;
genvar i;
generate for (i = 0; i < WIDTH; i = i + 4) begin:slice
\74HC85_1x1CMP4 cmp_i(
.A(AA[i+3:i]),
.B(BB[i+3:i]),
.Li(L[i]),
.Ei(E[i]),
.Gi(G[i]),
.Lo(L[i+4]),
.Eo(E[i+4]),
.Go(G[i+4])
);
end
endgenerate
assign Y = L[WIDTH];
endmodule
(* techmap_celltype = "$gt" *)
module _80_74HC85_gt (A, B, Y);
parameter A_SIGNED = 0;
parameter B_SIGNED = 0;
parameter A_WIDTH = 0;
parameter B_WIDTH = 0;
parameter Y_WIDTH = 0;
input [A_WIDTH-1:0] A;
input [B_WIDTH-1:0] B;
output [Y_WIDTH-1:0] Y;
wire _TECHMAP_FAIL_ = A_WIDTH <= 3 && B_WIDTH <= 3;
localparam MAX_WIDTH = (A_WIDTH > B_WIDTH) ? A_WIDTH : B_WIDTH;
localparam WIDTH = ((MAX_WIDTH + 3) / 4) * 4;
wire [MAX_WIDTH-1:0] A_buf, B_buf;
\$pos #(.A_SIGNED(A_SIGNED), .A_WIDTH(A_WIDTH), .Y_WIDTH(MAX_WIDTH)) A_conv (.A(A), .Y(A_buf));
\$pos #(.A_SIGNED(B_SIGNED), .A_WIDTH(B_WIDTH), .Y_WIDTH(MAX_WIDTH)) B_conv (.A(B), .Y(B_buf));
wire [WIDTH-1:0] AA = A_buf;
wire [WIDTH-1:0] BB = B_buf;
wire [WIDTH:0] G;
wire [WIDTH:0] E;
wire [WIDTH:0] L;
assign G[0] = 0;
assign E[0] = 1;
assign L[0] = 0;
genvar i;
generate for (i = 0; i < WIDTH; i = i + 4) begin:slice
\74HC85_1x1CMP4 cmp_i(
.A(AA[i+3:i]),
.B(BB[i+3:i]),
.Li(L[i]),
.Ei(E[i]),
.Gi(G[i]),
.Lo(L[i+4]),
.Eo(E[i+4]),
.Go(G[i+4])
);
end
endgenerate
assign Y = G[WIDTH];
endmodule
(* techmap_celltype = "$le" *)
module _80_74HC85_le (A, B, Y);
parameter A_SIGNED = 0;
parameter B_SIGNED = 0;
parameter A_WIDTH = 0;
parameter B_WIDTH = 0;
parameter Y_WIDTH = 0;
input [A_WIDTH-1:0] A;
input [B_WIDTH-1:0] B;
output [Y_WIDTH-1:0] Y;
wire _TECHMAP_FAIL_ = A_WIDTH <= 3 && B_WIDTH <= 3;
localparam MAX_WIDTH = (A_WIDTH > B_WIDTH) ? A_WIDTH : B_WIDTH;
localparam WIDTH = ((MAX_WIDTH + 3) / 4) * 4;
wire [MAX_WIDTH-1:0] A_buf, B_buf;
\$pos #(.A_SIGNED(A_SIGNED), .A_WIDTH(A_WIDTH), .Y_WIDTH(MAX_WIDTH)) A_conv (.A(A), .Y(A_buf));
\$pos #(.A_SIGNED(B_SIGNED), .A_WIDTH(B_WIDTH), .Y_WIDTH(MAX_WIDTH)) B_conv (.A(B), .Y(B_buf));
wire [WIDTH-1:0] AA = A_buf;
wire [WIDTH-1:0] BB = B_buf;
wire [WIDTH:0] G;
wire [WIDTH:0] E;
wire [WIDTH:0] L;
assign G[0] = 0;
assign E[0] = 1;
assign L[0] = 0;
genvar i;
generate for (i = 0; i < WIDTH; i = i + 4) begin:slice
\74HC85_1x1CMP4 cmp_i(
.A(AA[i+3:i]),
.B(BB[i+3:i]),
.Li(L[i]),
.Ei(E[i]),
.Gi(G[i]),
.Lo(L[i+4]),
.Eo(E[i+4]),
.Go(G[i+4])
);
end
endgenerate
assign Y = !G[WIDTH];
endmodule
(* techmap_celltype = "$ge" *)
module _80_74HC85_ge (A, B, Y);
parameter A_SIGNED = 0;
parameter B_SIGNED = 0;
parameter A_WIDTH = 0;
parameter B_WIDTH = 0;
parameter Y_WIDTH = 0;
input [A_WIDTH-1:0] A;
input [B_WIDTH-1:0] B;
output [Y_WIDTH-1:0] Y;
wire _TECHMAP_FAIL_ = A_WIDTH <= 3 && B_WIDTH <= 3;
localparam MAX_WIDTH = (A_WIDTH > B_WIDTH) ? A_WIDTH : B_WIDTH;
localparam WIDTH = ((MAX_WIDTH + 3) / 4) * 4;
wire [MAX_WIDTH-1:0] A_buf, B_buf;
\$pos #(.A_SIGNED(A_SIGNED), .A_WIDTH(A_WIDTH), .Y_WIDTH(MAX_WIDTH)) A_conv (.A(A), .Y(A_buf));
\$pos #(.A_SIGNED(B_SIGNED), .A_WIDTH(B_WIDTH), .Y_WIDTH(MAX_WIDTH)) B_conv (.A(B), .Y(B_buf));
wire [WIDTH-1:0] AA = A_buf;
wire [WIDTH-1:0] BB = B_buf;
wire [WIDTH:0] G;
wire [WIDTH:0] E;
wire [WIDTH:0] L;
assign G[0] = 0;
assign E[0] = 1;
assign L[0] = 0;
genvar i;
generate for (i = 0; i < WIDTH; i = i + 4) begin:slice
\74HC85_1x1CMP4 cmp_i(
.A(AA[i+3:i]),
.B(BB[i+3:i]),
.Li(L[i]),
.Ei(E[i]),
.Gi(G[i]),
.Lo(L[i+4]),
.Eo(E[i+4]),
.Go(G[i+4])
);
end
endgenerate
assign Y = !L[WIDTH];
endmodule