dp_adder16.v
6.12 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
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
// Module instances modified by /home/rws/workarea/rf/sw/bbplayer/tools/necprimfix
//
// 16 instances of ad01d1h changed to j_ad01.
// 8 instances of ad01d2 changed to j_ad01.
// 1 instance of an02d1h changed to j_an02.
// 6 instances of mx21d1 changed to j_mx21.
// 4 instances of mx21d1h changed to j_mx21.
// 1 instance of ni01d7 changed to j_ni01.
// 1 instance of or02d2 changed to j_or02.
// 1 instance of xn02d1 changed to j_xn02.
// 1 instance of xo02d1 changed to j_xo02.
//
////////////////////////////////////////////////////////////////////////
//
// Project Reality
//
// module: dp_adder16
// description: 16 bit carry-propagating adder for use in replacing
// datapath adder with standard cells. Requires carry
// in and carry out.
//
// Ripple adder with high performance j_ad01 cells.
//
//
// designer: Brian Ferguson
// date: 3/8/95
//
////////////////////////////////////////////////////////////////////////
module dp_adder16 (
input1,
input2,
carryin,
sumout,
carryout14,
carryout
) ;
input [15:0] input1;
input [15:0] input2;
input carryin;
output [15:0] sumout;
output carryout14; // carry out for bit 14 used to generate overflow
output carryout; // carry out for bit 15
/*
* This adder is optimised for area therefore is a 16 bit
* ripple carry adder.
*/
/*
* Carry in does not go to carryin of least significant bit
* data is timing critical not carryin.
*/
wire [7:0] carry; // carry out for each bit
j_ad01 addb0 ( .a(carryin), .b(input2[0]), .ci(input1[0]),
.s(sumout[0]), .co(carry[0])
);
j_ad01 addb1 ( .a(input1[1]), .b(input2[1]), .ci(carry[0]),
.s(sumout[1]), .co(carry[1])
);
j_ad01 addb2 ( .a(input1[2]), .b(input2[2]), .ci(carry[1]),
.s(sumout[2]), .co(carry[2])
);
j_ad01 addb3 ( .a(input1[3]), .b(input2[3]), .ci(carry[2]),
.s(sumout[3]), .co(carry[3])
);
j_ad01 addb4 ( .a(input1[4]), .b(input2[4]), .ci(carry[3]),
.s(sumout[4]), .co(carry[4])
);
j_ad01 addb5 ( .a(input1[5]), .b(input2[5]), .ci(carry[4]),
.s(sumout[5]), .co(carry[5])
);
j_ad01 addb6 ( .a(input1[6]), .b(input2[6]), .ci(carry[5]),
.s(sumout[6]), .co(carry[6])
);
j_ad01 addb7 ( .a(input1[7]), .b(input2[7]), .ci(carry[6]),
.s(sumout[7]), .co(carry[7])
);
/*
* j_ad01 addb8 ( .a(input1[8]), .b(input2[8]), .ci(carry[7]),
* .s(sumout[8]), .co(carry[8])
* );
*/
/*
* Carry select is applied to upper 8 bits of 16 bit add.
* These are built out of low performance add cells to save area.
* First group assumes carry in 0.
*/
wire [7:0] sumoutc0; // sum out for upper 7 bits of adder assuming carry in 0
wire [7:0] carryc0; // carry out for upper 7 bits of adder assuming carry in 0
/*
*ad01d2 addb8c0 ( .a(1'b0), .b(input2[8]), .ci(input1[8]),
* .s(sumoutc0[0]), .co(carryc0[0])
* );
*/
j_xo02 addb8s0 ( .a1(input2[8]), .a2(input1[8]),
.z(sumoutc0[0])
);
j_an02 addb8c0 ( .a1(input2[8]), .a2(input1[8]),
.z(carryc0[0])
);
j_ad01 addb9c0 ( .a(input1[9]), .b(input2[9]), .ci(carryc0[0]),
.s(sumoutc0[1]), .co(carryc0[1])
);
j_ad01 addb10c0 ( .a(input1[10]), .b(input2[10]), .ci(carryc0[1]),
.s(sumoutc0[2]), .co(carryc0[2])
);
j_ad01 addb11c0 ( .a(input1[11]), .b(input2[11]), .ci(carryc0[2]),
.s(sumoutc0[3]), .co(carryc0[3])
);
j_ad01 addb12c0 ( .a(input1[12]), .b(input2[12]), .ci(carryc0[3]),
.s(sumoutc0[4]), .co(carryc0[4])
);
j_ad01 addb13c0 ( .a(input1[13]), .b(input2[13]), .ci(carryc0[4]),
.s(sumoutc0[5]), .co(carryc0[5])
);
j_ad01 addb14c0 ( .a(input1[14]), .b(input2[14]), .ci(carryc0[5]),
.s(sumoutc0[6]), .co(carryc0[6])
);
j_ad01 addb15c0 ( .a(input1[15]), .b(input2[15]), .ci(carryc0[6]),
.s(sumoutc0[7]), .co(carryc0[7])
);
/*
* Second group assumes carryout 1
*/
wire [7:0] sumoutc1; // sum out for upper 7 bits of adder assuming carry in 1
wire [7:0] carryc1; // carry out for upper 7 bits of adder assuming carry in 1
/*
*ad01d2 addb8c1 ( .a(1'b1), .b(input2[8]), .ci(input1[8]),
* .s(sumoutc1[0]), .co(carryc1[0])
* );
*/
j_xn02 addb8s1 ( .a1(input2[8]), .a2(input1[8]),
.zn(sumoutc1[0])
);
j_or02 addb8c1 ( .a1(input2[8]), .a2(input1[8]),
.z(carryc1[0])
);
j_ad01 addb9c1 ( .a(input1[9]), .b(input2[9]), .ci(carryc1[0]),
.s(sumoutc1[1]), .co(carryc1[1])
);
j_ad01 addb10c1 ( .a(input1[10]), .b(input2[10]), .ci(carryc1[1]),
.s(sumoutc1[2]), .co(carryc1[2])
);
j_ad01 addb11c1 ( .a(input1[11]), .b(input2[11]), .ci(carryc1[2]),
.s(sumoutc1[3]), .co(carryc1[3])
);
j_ad01 addb12c1 ( .a(input1[12]), .b(input2[12]), .ci(carryc1[3]),
.s(sumoutc1[4]), .co(carryc1[4])
);
j_ad01 addb13c1 ( .a(input1[13]), .b(input2[13]), .ci(carryc1[4]),
.s(sumoutc1[5]), .co(carryc1[5])
);
j_ad01 addb14c1 ( .a(input1[14]), .b(input2[14]), .ci(carryc1[5]),
.s(sumoutc1[6]), .co(carryc1[6])
);
j_ad01 addb15c1 ( .a(input1[15]), .b(input2[15]), .ci(carryc1[6]),
.s(sumoutc1[7]), .co(carryc1[7])
);
/*
* Mux for carry selecting between upper 8 bits of data
*/
wire buf_carry; // buffer carry out
j_ni01 buf_carry7 ( .z (buf_carry),
.i (carry[7])
) ;
j_mx21 dpcselmx8 ( .z (sumout[8]),
.i0 (sumoutc0[0]),
.i1 (sumoutc1[0]),
.s (buf_carry)
) ;
j_mx21 dpcselmx9 ( .z (sumout[9]),
.i0 (sumoutc0[1]),
.i1 (sumoutc1[1]),
.s (buf_carry)
) ;
j_mx21 dpcselmx10 ( .z (sumout[10]),
.i0 (sumoutc0[2]),
.i1 (sumoutc1[2]),
.s (buf_carry)
) ;
j_mx21 dpcselmx11 ( .z (sumout[11]),
.i0 (sumoutc0[3]),
.i1 (sumoutc1[3]),
.s (buf_carry)
) ;
j_mx21 dpcselmx12 ( .z (sumout[12]),
.i0 (sumoutc0[4]),
.i1 (sumoutc1[4]),
.s (buf_carry)
) ;
j_mx21 dpcselmx13 ( .z (sumout[13]),
.i0 (sumoutc0[5]),
.i1 (sumoutc1[5]),
.s (buf_carry)
) ;
j_mx21 dpcselmx14 ( .z (sumout[14]),
.i0 (sumoutc0[6]),
.i1 (sumoutc1[6]),
.s (buf_carry)
) ;
j_mx21 dpcselmx15 ( .z (sumout[15]),
.i0 (sumoutc0[7]),
.i1 (sumoutc1[7]),
.s (carry[7])
) ;
j_mx21 coutb14 ( .z (carryout14),
.i0 (carryc0[6]),
.i1 (carryc1[6]),
.s (buf_carry)
) ;
j_mx21 coutb15 ( .z (carryout),
.i0 (carryc0[7]),
.i1 (carryc1[7]),
.s (carry[7])
) ;
endmodule // dp_adder16