-
Notifications
You must be signed in to change notification settings - Fork 7
/
wt.vhd
498 lines (475 loc) · 30.6 KB
/
wt.vhd
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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
-- This program is generated by ./wt
-- Do manual changes to the code only when you are sure!
-- if you see any bug, correct the generator code.
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
entity walltree_mul is
port (
op1 : in std_logic_vector(9 downto 0 );
op2 : in std_logic_vector(9 downto 0 );
result : out std_logic_vector(20 downto 0 )
);
end walltree_mul;
architecture rtl of walltree_mul is
-- signals for the partial products
signal pp0 : std_logic_vector(9 downto 0 );
signal pp1 : std_logic_vector(9 downto 0 );
signal pp2 : std_logic_vector(9 downto 0 );
signal pp3 : std_logic_vector(9 downto 0 );
signal pp4 : std_logic_vector(9 downto 0 );
signal pp5 : std_logic_vector(9 downto 0 );
signal pp6 : std_logic_vector(9 downto 0 );
signal pp7 : std_logic_vector(9 downto 0 );
signal pp8 : std_logic_vector(9 downto 0 );
signal pp9 : std_logic_vector(9 downto 0 );
-- internal signals
-- layer : 1
-- csa : 0
signal sigCSA_sum_0 : std_logic_vector (11 downto 0);
signal sigCSA_cry_0 : std_logic_vector (11 downto 0);
-- csa : 1
signal sigCSA_sum_1 : std_logic_vector (11 downto 0);
signal sigCSA_cry_1 : std_logic_vector (11 downto 0);
-- csa : 2
signal sigCSA_sum_2 : std_logic_vector (11 downto 0);
signal sigCSA_cry_2 : std_logic_vector (11 downto 0);
-- layer : 2
-- csa : 3
signal sigCSA_sum_3 : std_logic_vector (14 downto 0);
signal sigCSA_cry_3 : std_logic_vector (14 downto 0);
-- csa : 4
signal sigCSA_sum_4 : std_logic_vector (14 downto 0);
signal sigCSA_cry_4 : std_logic_vector (14 downto 0);
-- layer : 3
-- csa : 5
signal sigCSA_sum_5 : std_logic_vector (18 downto 0);
signal sigCSA_cry_5 : std_logic_vector (18 downto 0);
-- layer : 4
-- csa : 6
signal sigCSA_sum_6 : std_logic_vector (19 downto 0);
signal sigCSA_cry_6 : std_logic_vector (19 downto 0);
-- layer : 5
-- csa : 7
signal sigCSA_sum_7 : std_logic_vector (20 downto 0);
signal sigCSA_cry_7 : std_logic_vector (20 downto 0);
--sigCSA_sum_7
--sigCSA_cry_7
-- all csa structures generated
-- carry signal for the final RCA
signal carry_rca : std_logic_vector( 19 downto 0 );
begin
pp0(0) <= op1(0) and op2(0);
pp0(1) <= op1(0) and op2(1);
pp0(2) <= op1(0) and op2(2);
pp0(3) <= op1(0) and op2(3);
pp0(4) <= op1(0) and op2(4);
pp0(5) <= op1(0) and op2(5);
pp0(6) <= op1(0) and op2(6);
pp0(7) <= op1(0) and op2(7);
pp0(8) <= op1(0) and op2(8);
pp0(9) <= op1(0) and op2(9);
pp1(0) <= op1(1) and op2(0);
pp1(1) <= op1(1) and op2(1);
pp1(2) <= op1(1) and op2(2);
pp1(3) <= op1(1) and op2(3);
pp1(4) <= op1(1) and op2(4);
pp1(5) <= op1(1) and op2(5);
pp1(6) <= op1(1) and op2(6);
pp1(7) <= op1(1) and op2(7);
pp1(8) <= op1(1) and op2(8);
pp1(9) <= op1(1) and op2(9);
pp2(0) <= op1(2) and op2(0);
pp2(1) <= op1(2) and op2(1);
pp2(2) <= op1(2) and op2(2);
pp2(3) <= op1(2) and op2(3);
pp2(4) <= op1(2) and op2(4);
pp2(5) <= op1(2) and op2(5);
pp2(6) <= op1(2) and op2(6);
pp2(7) <= op1(2) and op2(7);
pp2(8) <= op1(2) and op2(8);
pp2(9) <= op1(2) and op2(9);
pp3(0) <= op1(3) and op2(0);
pp3(1) <= op1(3) and op2(1);
pp3(2) <= op1(3) and op2(2);
pp3(3) <= op1(3) and op2(3);
pp3(4) <= op1(3) and op2(4);
pp3(5) <= op1(3) and op2(5);
pp3(6) <= op1(3) and op2(6);
pp3(7) <= op1(3) and op2(7);
pp3(8) <= op1(3) and op2(8);
pp3(9) <= op1(3) and op2(9);
pp4(0) <= op1(4) and op2(0);
pp4(1) <= op1(4) and op2(1);
pp4(2) <= op1(4) and op2(2);
pp4(3) <= op1(4) and op2(3);
pp4(4) <= op1(4) and op2(4);
pp4(5) <= op1(4) and op2(5);
pp4(6) <= op1(4) and op2(6);
pp4(7) <= op1(4) and op2(7);
pp4(8) <= op1(4) and op2(8);
pp4(9) <= op1(4) and op2(9);
pp5(0) <= op1(5) and op2(0);
pp5(1) <= op1(5) and op2(1);
pp5(2) <= op1(5) and op2(2);
pp5(3) <= op1(5) and op2(3);
pp5(4) <= op1(5) and op2(4);
pp5(5) <= op1(5) and op2(5);
pp5(6) <= op1(5) and op2(6);
pp5(7) <= op1(5) and op2(7);
pp5(8) <= op1(5) and op2(8);
pp5(9) <= op1(5) and op2(9);
pp6(0) <= op1(6) and op2(0);
pp6(1) <= op1(6) and op2(1);
pp6(2) <= op1(6) and op2(2);
pp6(3) <= op1(6) and op2(3);
pp6(4) <= op1(6) and op2(4);
pp6(5) <= op1(6) and op2(5);
pp6(6) <= op1(6) and op2(6);
pp6(7) <= op1(6) and op2(7);
pp6(8) <= op1(6) and op2(8);
pp6(9) <= op1(6) and op2(9);
pp7(0) <= op1(7) and op2(0);
pp7(1) <= op1(7) and op2(1);
pp7(2) <= op1(7) and op2(2);
pp7(3) <= op1(7) and op2(3);
pp7(4) <= op1(7) and op2(4);
pp7(5) <= op1(7) and op2(5);
pp7(6) <= op1(7) and op2(6);
pp7(7) <= op1(7) and op2(7);
pp7(8) <= op1(7) and op2(8);
pp7(9) <= op1(7) and op2(9);
pp8(0) <= op1(8) and op2(0);
pp8(1) <= op1(8) and op2(1);
pp8(2) <= op1(8) and op2(2);
pp8(3) <= op1(8) and op2(3);
pp8(4) <= op1(8) and op2(4);
pp8(5) <= op1(8) and op2(5);
pp8(6) <= op1(8) and op2(6);
pp8(7) <= op1(8) and op2(7);
pp8(8) <= op1(8) and op2(8);
pp8(9) <= op1(8) and op2(9);
pp9(0) <= op1(9) and op2(0);
pp9(1) <= op1(9) and op2(1);
pp9(2) <= op1(9) and op2(2);
pp9(3) <= op1(9) and op2(3);
pp9(4) <= op1(9) and op2(4);
pp9(5) <= op1(9) and op2(5);
pp9(6) <= op1(9) and op2(6);
pp9(7) <= op1(9) and op2(7);
pp9(8) <= op1(9) and op2(8);
pp9(9) <= op1(9) and op2(9);
-- ******************
-- csa : 0
-- generating sigCSA_sum_0 and sigCSA_cry_0
sigCSA_sum_0(0) <= pp0(0) xor '0' xor '0' ;
sigCSA_cry_0(0) <= ( pp0(0) and '0' ) or ( '0' and ( pp0(0) xor '0' )) ;
sigCSA_sum_0(1) <= pp0(1) xor pp1(0) xor '0' ;
sigCSA_cry_0(1) <= ( pp0(1) and pp1(0) ) or ( '0' and ( pp0(1) xor pp1(0) )) ;
sigCSA_sum_0(2) <= pp0(2) xor pp1(1) xor pp2(0) ;
sigCSA_cry_0(2) <= ( pp0(2) and pp1(1) ) or ( pp2(0) and ( pp0(2) xor pp1(1) )) ;
sigCSA_sum_0(3) <= pp0(3) xor pp1(2) xor pp2(1) ;
sigCSA_cry_0(3) <= ( pp0(3) and pp1(2) ) or ( pp2(1) and ( pp0(3) xor pp1(2) )) ;
sigCSA_sum_0(4) <= pp0(4) xor pp1(3) xor pp2(2) ;
sigCSA_cry_0(4) <= ( pp0(4) and pp1(3) ) or ( pp2(2) and ( pp0(4) xor pp1(3) )) ;
sigCSA_sum_0(5) <= pp0(5) xor pp1(4) xor pp2(3) ;
sigCSA_cry_0(5) <= ( pp0(5) and pp1(4) ) or ( pp2(3) and ( pp0(5) xor pp1(4) )) ;
sigCSA_sum_0(6) <= pp0(6) xor pp1(5) xor pp2(4) ;
sigCSA_cry_0(6) <= ( pp0(6) and pp1(5) ) or ( pp2(4) and ( pp0(6) xor pp1(5) )) ;
sigCSA_sum_0(7) <= pp0(7) xor pp1(6) xor pp2(5) ;
sigCSA_cry_0(7) <= ( pp0(7) and pp1(6) ) or ( pp2(5) and ( pp0(7) xor pp1(6) )) ;
sigCSA_sum_0(8) <= pp0(8) xor pp1(7) xor pp2(6) ;
sigCSA_cry_0(8) <= ( pp0(8) and pp1(7) ) or ( pp2(6) and ( pp0(8) xor pp1(7) )) ;
sigCSA_sum_0(9) <= pp0(9) xor pp1(8) xor pp2(7) ;
sigCSA_cry_0(9) <= ( pp0(9) and pp1(8) ) or ( pp2(7) and ( pp0(9) xor pp1(8) )) ;
sigCSA_sum_0(10) <= '0' xor pp1(9) xor pp2(8) ;
sigCSA_cry_0(10) <= ( '0' and pp1(9) ) or ( pp2(8) and ( '0' xor pp1(9) )) ;
sigCSA_sum_0(11) <= '0' xor '0' xor pp2(9) ;
sigCSA_cry_0(11) <= ( '0' and '0' ) or ( pp2(9) and ( '0' xor '0' )) ;
-- csa : 1
-- generating sigCSA_sum_1 and sigCSA_cry_1
sigCSA_sum_1(0) <= pp3(0) xor '0' xor '0' ;
sigCSA_cry_1(0) <= ( pp3(0) and '0' ) or ( '0' and ( pp3(0) xor '0' )) ;
sigCSA_sum_1(1) <= pp3(1) xor pp4(0) xor '0' ;
sigCSA_cry_1(1) <= ( pp3(1) and pp4(0) ) or ( '0' and ( pp3(1) xor pp4(0) )) ;
sigCSA_sum_1(2) <= pp3(2) xor pp4(1) xor pp5(0) ;
sigCSA_cry_1(2) <= ( pp3(2) and pp4(1) ) or ( pp5(0) and ( pp3(2) xor pp4(1) )) ;
sigCSA_sum_1(3) <= pp3(3) xor pp4(2) xor pp5(1) ;
sigCSA_cry_1(3) <= ( pp3(3) and pp4(2) ) or ( pp5(1) and ( pp3(3) xor pp4(2) )) ;
sigCSA_sum_1(4) <= pp3(4) xor pp4(3) xor pp5(2) ;
sigCSA_cry_1(4) <= ( pp3(4) and pp4(3) ) or ( pp5(2) and ( pp3(4) xor pp4(3) )) ;
sigCSA_sum_1(5) <= pp3(5) xor pp4(4) xor pp5(3) ;
sigCSA_cry_1(5) <= ( pp3(5) and pp4(4) ) or ( pp5(3) and ( pp3(5) xor pp4(4) )) ;
sigCSA_sum_1(6) <= pp3(6) xor pp4(5) xor pp5(4) ;
sigCSA_cry_1(6) <= ( pp3(6) and pp4(5) ) or ( pp5(4) and ( pp3(6) xor pp4(5) )) ;
sigCSA_sum_1(7) <= pp3(7) xor pp4(6) xor pp5(5) ;
sigCSA_cry_1(7) <= ( pp3(7) and pp4(6) ) or ( pp5(5) and ( pp3(7) xor pp4(6) )) ;
sigCSA_sum_1(8) <= pp3(8) xor pp4(7) xor pp5(6) ;
sigCSA_cry_1(8) <= ( pp3(8) and pp4(7) ) or ( pp5(6) and ( pp3(8) xor pp4(7) )) ;
sigCSA_sum_1(9) <= pp3(9) xor pp4(8) xor pp5(7) ;
sigCSA_cry_1(9) <= ( pp3(9) and pp4(8) ) or ( pp5(7) and ( pp3(9) xor pp4(8) )) ;
sigCSA_sum_1(10) <= '0' xor pp4(9) xor pp5(8) ;
sigCSA_cry_1(10) <= ( '0' and pp4(9) ) or ( pp5(8) and ( '0' xor pp4(9) )) ;
sigCSA_sum_1(11) <= '0' xor '0' xor pp5(9) ;
sigCSA_cry_1(11) <= ( '0' and '0' ) or ( pp5(9) and ( '0' xor '0' )) ;
-- csa : 2
-- generating sigCSA_sum_2 and sigCSA_cry_2
sigCSA_sum_2(0) <= pp6(0) xor '0' xor '0' ;
sigCSA_cry_2(0) <= ( pp6(0) and '0' ) or ( '0' and ( pp6(0) xor '0' )) ;
sigCSA_sum_2(1) <= pp6(1) xor pp7(0) xor '0' ;
sigCSA_cry_2(1) <= ( pp6(1) and pp7(0) ) or ( '0' and ( pp6(1) xor pp7(0) )) ;
sigCSA_sum_2(2) <= pp6(2) xor pp7(1) xor pp8(0) ;
sigCSA_cry_2(2) <= ( pp6(2) and pp7(1) ) or ( pp8(0) and ( pp6(2) xor pp7(1) )) ;
sigCSA_sum_2(3) <= pp6(3) xor pp7(2) xor pp8(1) ;
sigCSA_cry_2(3) <= ( pp6(3) and pp7(2) ) or ( pp8(1) and ( pp6(3) xor pp7(2) )) ;
sigCSA_sum_2(4) <= pp6(4) xor pp7(3) xor pp8(2) ;
sigCSA_cry_2(4) <= ( pp6(4) and pp7(3) ) or ( pp8(2) and ( pp6(4) xor pp7(3) )) ;
sigCSA_sum_2(5) <= pp6(5) xor pp7(4) xor pp8(3) ;
sigCSA_cry_2(5) <= ( pp6(5) and pp7(4) ) or ( pp8(3) and ( pp6(5) xor pp7(4) )) ;
sigCSA_sum_2(6) <= pp6(6) xor pp7(5) xor pp8(4) ;
sigCSA_cry_2(6) <= ( pp6(6) and pp7(5) ) or ( pp8(4) and ( pp6(6) xor pp7(5) )) ;
sigCSA_sum_2(7) <= pp6(7) xor pp7(6) xor pp8(5) ;
sigCSA_cry_2(7) <= ( pp6(7) and pp7(6) ) or ( pp8(5) and ( pp6(7) xor pp7(6) )) ;
sigCSA_sum_2(8) <= pp6(8) xor pp7(7) xor pp8(6) ;
sigCSA_cry_2(8) <= ( pp6(8) and pp7(7) ) or ( pp8(6) and ( pp6(8) xor pp7(7) )) ;
sigCSA_sum_2(9) <= pp6(9) xor pp7(8) xor pp8(7) ;
sigCSA_cry_2(9) <= ( pp6(9) and pp7(8) ) or ( pp8(7) and ( pp6(9) xor pp7(8) )) ;
sigCSA_sum_2(10) <= '0' xor pp7(9) xor pp8(8) ;
sigCSA_cry_2(10) <= ( '0' and pp7(9) ) or ( pp8(8) and ( '0' xor pp7(9) )) ;
sigCSA_sum_2(11) <= '0' xor '0' xor pp8(9) ;
sigCSA_cry_2(11) <= ( '0' and '0' ) or ( pp8(9) and ( '0' xor '0' )) ;
-- csa : 3
-- generating sigCSA_sum_3 and sigCSA_cry_3
sigCSA_sum_3(0) <= sigCSA_sum_0(0) xor '0' xor '0' ;
sigCSA_cry_3(0) <= ( sigCSA_sum_0(0) and '0' ) or ( '0' and ( sigCSA_sum_0(0) xor '0' )) ;
sigCSA_sum_3(1) <= sigCSA_sum_0(1) xor sigCSA_cry_0(0) xor '0' ;
sigCSA_cry_3(1) <= ( sigCSA_sum_0(1) and sigCSA_cry_0(0) ) or ( '0' and ( sigCSA_sum_0(1) xor sigCSA_cry_0(0) )) ;
sigCSA_sum_3(2) <= sigCSA_sum_0(2) xor sigCSA_cry_0(1) xor '0' ;
sigCSA_cry_3(2) <= ( sigCSA_sum_0(2) and sigCSA_cry_0(1) ) or ( '0' and ( sigCSA_sum_0(2) xor sigCSA_cry_0(1) )) ;
sigCSA_sum_3(3) <= sigCSA_sum_0(3) xor sigCSA_cry_0(2) xor sigCSA_sum_1(0) ;
sigCSA_cry_3(3) <= ( sigCSA_sum_0(3) and sigCSA_cry_0(2) ) or ( sigCSA_sum_1(0) and ( sigCSA_sum_0(3) xor sigCSA_cry_0(2) )) ;
sigCSA_sum_3(4) <= sigCSA_sum_0(4) xor sigCSA_cry_0(3) xor sigCSA_sum_1(1) ;
sigCSA_cry_3(4) <= ( sigCSA_sum_0(4) and sigCSA_cry_0(3) ) or ( sigCSA_sum_1(1) and ( sigCSA_sum_0(4) xor sigCSA_cry_0(3) )) ;
sigCSA_sum_3(5) <= sigCSA_sum_0(5) xor sigCSA_cry_0(4) xor sigCSA_sum_1(2) ;
sigCSA_cry_3(5) <= ( sigCSA_sum_0(5) and sigCSA_cry_0(4) ) or ( sigCSA_sum_1(2) and ( sigCSA_sum_0(5) xor sigCSA_cry_0(4) )) ;
sigCSA_sum_3(6) <= sigCSA_sum_0(6) xor sigCSA_cry_0(5) xor sigCSA_sum_1(3) ;
sigCSA_cry_3(6) <= ( sigCSA_sum_0(6) and sigCSA_cry_0(5) ) or ( sigCSA_sum_1(3) and ( sigCSA_sum_0(6) xor sigCSA_cry_0(5) )) ;
sigCSA_sum_3(7) <= sigCSA_sum_0(7) xor sigCSA_cry_0(6) xor sigCSA_sum_1(4) ;
sigCSA_cry_3(7) <= ( sigCSA_sum_0(7) and sigCSA_cry_0(6) ) or ( sigCSA_sum_1(4) and ( sigCSA_sum_0(7) xor sigCSA_cry_0(6) )) ;
sigCSA_sum_3(8) <= sigCSA_sum_0(8) xor sigCSA_cry_0(7) xor sigCSA_sum_1(5) ;
sigCSA_cry_3(8) <= ( sigCSA_sum_0(8) and sigCSA_cry_0(7) ) or ( sigCSA_sum_1(5) and ( sigCSA_sum_0(8) xor sigCSA_cry_0(7) )) ;
sigCSA_sum_3(9) <= sigCSA_sum_0(9) xor sigCSA_cry_0(8) xor sigCSA_sum_1(6) ;
sigCSA_cry_3(9) <= ( sigCSA_sum_0(9) and sigCSA_cry_0(8) ) or ( sigCSA_sum_1(6) and ( sigCSA_sum_0(9) xor sigCSA_cry_0(8) )) ;
sigCSA_sum_3(10) <= sigCSA_sum_0(10) xor sigCSA_cry_0(9) xor sigCSA_sum_1(7) ;
sigCSA_cry_3(10) <= ( sigCSA_sum_0(10) and sigCSA_cry_0(9) ) or ( sigCSA_sum_1(7) and ( sigCSA_sum_0(10) xor sigCSA_cry_0(9) )) ;
sigCSA_sum_3(11) <= sigCSA_sum_0(11) xor sigCSA_cry_0(10) xor sigCSA_sum_1(8) ;
sigCSA_cry_3(11) <= ( sigCSA_sum_0(11) and sigCSA_cry_0(10) ) or ( sigCSA_sum_1(8) and ( sigCSA_sum_0(11) xor sigCSA_cry_0(10) )) ;
sigCSA_sum_3(12) <= '0' xor sigCSA_cry_0(11) xor sigCSA_sum_1(9) ;
sigCSA_cry_3(12) <= ( '0' and sigCSA_cry_0(11) ) or ( sigCSA_sum_1(9) and ( '0' xor sigCSA_cry_0(11) )) ;
sigCSA_sum_3(13) <= '0' xor '0' xor sigCSA_sum_1(10) ;
sigCSA_cry_3(13) <= ( '0' and '0' ) or ( sigCSA_sum_1(10) and ( '0' xor '0' )) ;
sigCSA_sum_3(14) <= '0' xor '0' xor sigCSA_sum_1(11) ;
sigCSA_cry_3(14) <= ( '0' and '0' ) or ( sigCSA_sum_1(11) and ( '0' xor '0' )) ;
-- csa : 4
-- generating sigCSA_sum_4 and sigCSA_cry_4
sigCSA_sum_4(0) <= sigCSA_cry_1(0) xor '0' xor '0' ;
sigCSA_cry_4(0) <= ( sigCSA_cry_1(0) and '0' ) or ( '0' and ( sigCSA_cry_1(0) xor '0' )) ;
sigCSA_sum_4(1) <= sigCSA_cry_1(1) xor '0' xor '0' ;
sigCSA_cry_4(1) <= ( sigCSA_cry_1(1) and '0' ) or ( '0' and ( sigCSA_cry_1(1) xor '0' )) ;
sigCSA_sum_4(2) <= sigCSA_cry_1(2) xor sigCSA_sum_2(0) xor '0' ;
sigCSA_cry_4(2) <= ( sigCSA_cry_1(2) and sigCSA_sum_2(0) ) or ( '0' and ( sigCSA_cry_1(2) xor sigCSA_sum_2(0) )) ;
sigCSA_sum_4(3) <= sigCSA_cry_1(3) xor sigCSA_sum_2(1) xor sigCSA_cry_2(0) ;
sigCSA_cry_4(3) <= ( sigCSA_cry_1(3) and sigCSA_sum_2(1) ) or ( sigCSA_cry_2(0) and ( sigCSA_cry_1(3) xor sigCSA_sum_2(1) )) ;
sigCSA_sum_4(4) <= sigCSA_cry_1(4) xor sigCSA_sum_2(2) xor sigCSA_cry_2(1) ;
sigCSA_cry_4(4) <= ( sigCSA_cry_1(4) and sigCSA_sum_2(2) ) or ( sigCSA_cry_2(1) and ( sigCSA_cry_1(4) xor sigCSA_sum_2(2) )) ;
sigCSA_sum_4(5) <= sigCSA_cry_1(5) xor sigCSA_sum_2(3) xor sigCSA_cry_2(2) ;
sigCSA_cry_4(5) <= ( sigCSA_cry_1(5) and sigCSA_sum_2(3) ) or ( sigCSA_cry_2(2) and ( sigCSA_cry_1(5) xor sigCSA_sum_2(3) )) ;
sigCSA_sum_4(6) <= sigCSA_cry_1(6) xor sigCSA_sum_2(4) xor sigCSA_cry_2(3) ;
sigCSA_cry_4(6) <= ( sigCSA_cry_1(6) and sigCSA_sum_2(4) ) or ( sigCSA_cry_2(3) and ( sigCSA_cry_1(6) xor sigCSA_sum_2(4) )) ;
sigCSA_sum_4(7) <= sigCSA_cry_1(7) xor sigCSA_sum_2(5) xor sigCSA_cry_2(4) ;
sigCSA_cry_4(7) <= ( sigCSA_cry_1(7) and sigCSA_sum_2(5) ) or ( sigCSA_cry_2(4) and ( sigCSA_cry_1(7) xor sigCSA_sum_2(5) )) ;
sigCSA_sum_4(8) <= sigCSA_cry_1(8) xor sigCSA_sum_2(6) xor sigCSA_cry_2(5) ;
sigCSA_cry_4(8) <= ( sigCSA_cry_1(8) and sigCSA_sum_2(6) ) or ( sigCSA_cry_2(5) and ( sigCSA_cry_1(8) xor sigCSA_sum_2(6) )) ;
sigCSA_sum_4(9) <= sigCSA_cry_1(9) xor sigCSA_sum_2(7) xor sigCSA_cry_2(6) ;
sigCSA_cry_4(9) <= ( sigCSA_cry_1(9) and sigCSA_sum_2(7) ) or ( sigCSA_cry_2(6) and ( sigCSA_cry_1(9) xor sigCSA_sum_2(7) )) ;
sigCSA_sum_4(10) <= sigCSA_cry_1(10) xor sigCSA_sum_2(8) xor sigCSA_cry_2(7) ;
sigCSA_cry_4(10) <= ( sigCSA_cry_1(10) and sigCSA_sum_2(8) ) or ( sigCSA_cry_2(7) and ( sigCSA_cry_1(10) xor sigCSA_sum_2(8) )) ;
sigCSA_sum_4(11) <= sigCSA_cry_1(11) xor sigCSA_sum_2(9) xor sigCSA_cry_2(8) ;
sigCSA_cry_4(11) <= ( sigCSA_cry_1(11) and sigCSA_sum_2(9) ) or ( sigCSA_cry_2(8) and ( sigCSA_cry_1(11) xor sigCSA_sum_2(9) )) ;
sigCSA_sum_4(12) <= '0' xor sigCSA_sum_2(10) xor sigCSA_cry_2(9) ;
sigCSA_cry_4(12) <= ( '0' and sigCSA_sum_2(10) ) or ( sigCSA_cry_2(9) and ( '0' xor sigCSA_sum_2(10) )) ;
sigCSA_sum_4(13) <= '0' xor sigCSA_sum_2(11) xor sigCSA_cry_2(10) ;
sigCSA_cry_4(13) <= ( '0' and sigCSA_sum_2(11) ) or ( sigCSA_cry_2(10) and ( '0' xor sigCSA_sum_2(11) )) ;
sigCSA_sum_4(14) <= '0' xor '0' xor sigCSA_cry_2(11) ;
sigCSA_cry_4(14) <= ( '0' and '0' ) or ( sigCSA_cry_2(11) and ( '0' xor '0' )) ;
-- csa : 5
-- generating sigCSA_sum_5 and sigCSA_cry_5
sigCSA_sum_5(0) <= sigCSA_sum_3(0) xor '0' xor '0' ;
sigCSA_cry_5(0) <= ( sigCSA_sum_3(0) and '0' ) or ( '0' and ( sigCSA_sum_3(0) xor '0' )) ;
sigCSA_sum_5(1) <= sigCSA_sum_3(1) xor sigCSA_cry_3(0) xor '0' ;
sigCSA_cry_5(1) <= ( sigCSA_sum_3(1) and sigCSA_cry_3(0) ) or ( '0' and ( sigCSA_sum_3(1) xor sigCSA_cry_3(0) )) ;
sigCSA_sum_5(2) <= sigCSA_sum_3(2) xor sigCSA_cry_3(1) xor '0' ;
sigCSA_cry_5(2) <= ( sigCSA_sum_3(2) and sigCSA_cry_3(1) ) or ( '0' and ( sigCSA_sum_3(2) xor sigCSA_cry_3(1) )) ;
sigCSA_sum_5(3) <= sigCSA_sum_3(3) xor sigCSA_cry_3(2) xor '0' ;
sigCSA_cry_5(3) <= ( sigCSA_sum_3(3) and sigCSA_cry_3(2) ) or ( '0' and ( sigCSA_sum_3(3) xor sigCSA_cry_3(2) )) ;
sigCSA_sum_5(4) <= sigCSA_sum_3(4) xor sigCSA_cry_3(3) xor sigCSA_sum_4(0) ;
sigCSA_cry_5(4) <= ( sigCSA_sum_3(4) and sigCSA_cry_3(3) ) or ( sigCSA_sum_4(0) and ( sigCSA_sum_3(4) xor sigCSA_cry_3(3) )) ;
sigCSA_sum_5(5) <= sigCSA_sum_3(5) xor sigCSA_cry_3(4) xor sigCSA_sum_4(1) ;
sigCSA_cry_5(5) <= ( sigCSA_sum_3(5) and sigCSA_cry_3(4) ) or ( sigCSA_sum_4(1) and ( sigCSA_sum_3(5) xor sigCSA_cry_3(4) )) ;
sigCSA_sum_5(6) <= sigCSA_sum_3(6) xor sigCSA_cry_3(5) xor sigCSA_sum_4(2) ;
sigCSA_cry_5(6) <= ( sigCSA_sum_3(6) and sigCSA_cry_3(5) ) or ( sigCSA_sum_4(2) and ( sigCSA_sum_3(6) xor sigCSA_cry_3(5) )) ;
sigCSA_sum_5(7) <= sigCSA_sum_3(7) xor sigCSA_cry_3(6) xor sigCSA_sum_4(3) ;
sigCSA_cry_5(7) <= ( sigCSA_sum_3(7) and sigCSA_cry_3(6) ) or ( sigCSA_sum_4(3) and ( sigCSA_sum_3(7) xor sigCSA_cry_3(6) )) ;
sigCSA_sum_5(8) <= sigCSA_sum_3(8) xor sigCSA_cry_3(7) xor sigCSA_sum_4(4) ;
sigCSA_cry_5(8) <= ( sigCSA_sum_3(8) and sigCSA_cry_3(7) ) or ( sigCSA_sum_4(4) and ( sigCSA_sum_3(8) xor sigCSA_cry_3(7) )) ;
sigCSA_sum_5(9) <= sigCSA_sum_3(9) xor sigCSA_cry_3(8) xor sigCSA_sum_4(5) ;
sigCSA_cry_5(9) <= ( sigCSA_sum_3(9) and sigCSA_cry_3(8) ) or ( sigCSA_sum_4(5) and ( sigCSA_sum_3(9) xor sigCSA_cry_3(8) )) ;
sigCSA_sum_5(10) <= sigCSA_sum_3(10) xor sigCSA_cry_3(9) xor sigCSA_sum_4(6) ;
sigCSA_cry_5(10) <= ( sigCSA_sum_3(10) and sigCSA_cry_3(9) ) or ( sigCSA_sum_4(6) and ( sigCSA_sum_3(10) xor sigCSA_cry_3(9) )) ;
sigCSA_sum_5(11) <= sigCSA_sum_3(11) xor sigCSA_cry_3(10) xor sigCSA_sum_4(7) ;
sigCSA_cry_5(11) <= ( sigCSA_sum_3(11) and sigCSA_cry_3(10) ) or ( sigCSA_sum_4(7) and ( sigCSA_sum_3(11) xor sigCSA_cry_3(10) )) ;
sigCSA_sum_5(12) <= sigCSA_sum_3(12) xor sigCSA_cry_3(11) xor sigCSA_sum_4(8) ;
sigCSA_cry_5(12) <= ( sigCSA_sum_3(12) and sigCSA_cry_3(11) ) or ( sigCSA_sum_4(8) and ( sigCSA_sum_3(12) xor sigCSA_cry_3(11) )) ;
sigCSA_sum_5(13) <= sigCSA_sum_3(13) xor sigCSA_cry_3(12) xor sigCSA_sum_4(9) ;
sigCSA_cry_5(13) <= ( sigCSA_sum_3(13) and sigCSA_cry_3(12) ) or ( sigCSA_sum_4(9) and ( sigCSA_sum_3(13) xor sigCSA_cry_3(12) )) ;
sigCSA_sum_5(14) <= sigCSA_sum_3(14) xor sigCSA_cry_3(13) xor sigCSA_sum_4(10) ;
sigCSA_cry_5(14) <= ( sigCSA_sum_3(14) and sigCSA_cry_3(13) ) or ( sigCSA_sum_4(10) and ( sigCSA_sum_3(14) xor sigCSA_cry_3(13) )) ;
sigCSA_sum_5(15) <= '0' xor sigCSA_cry_3(14) xor sigCSA_sum_4(11) ;
sigCSA_cry_5(15) <= ( '0' and sigCSA_cry_3(14) ) or ( sigCSA_sum_4(11) and ( '0' xor sigCSA_cry_3(14) )) ;
sigCSA_sum_5(16) <= '0' xor '0' xor sigCSA_sum_4(12) ;
sigCSA_cry_5(16) <= ( '0' and '0' ) or ( sigCSA_sum_4(12) and ( '0' xor '0' )) ;
sigCSA_sum_5(17) <= '0' xor '0' xor sigCSA_sum_4(13) ;
sigCSA_cry_5(17) <= ( '0' and '0' ) or ( sigCSA_sum_4(13) and ( '0' xor '0' )) ;
sigCSA_sum_5(18) <= '0' xor '0' xor sigCSA_sum_4(14) ;
sigCSA_cry_5(18) <= ( '0' and '0' ) or ( sigCSA_sum_4(14) and ( '0' xor '0' )) ;
-- csa : 6
-- generating sigCSA_sum_6 and sigCSA_cry_6
sigCSA_sum_6(0) <= sigCSA_sum_5(0) xor '0' xor '0' ;
sigCSA_cry_6(0) <= ( sigCSA_sum_5(0) and '0' ) or ( '0' and ( sigCSA_sum_5(0) xor '0' )) ;
sigCSA_sum_6(1) <= sigCSA_sum_5(1) xor sigCSA_cry_5(0) xor '0' ;
sigCSA_cry_6(1) <= ( sigCSA_sum_5(1) and sigCSA_cry_5(0) ) or ( '0' and ( sigCSA_sum_5(1) xor sigCSA_cry_5(0) )) ;
sigCSA_sum_6(2) <= sigCSA_sum_5(2) xor sigCSA_cry_5(1) xor '0' ;
sigCSA_cry_6(2) <= ( sigCSA_sum_5(2) and sigCSA_cry_5(1) ) or ( '0' and ( sigCSA_sum_5(2) xor sigCSA_cry_5(1) )) ;
sigCSA_sum_6(3) <= sigCSA_sum_5(3) xor sigCSA_cry_5(2) xor '0' ;
sigCSA_cry_6(3) <= ( sigCSA_sum_5(3) and sigCSA_cry_5(2) ) or ( '0' and ( sigCSA_sum_5(3) xor sigCSA_cry_5(2) )) ;
sigCSA_sum_6(4) <= sigCSA_sum_5(4) xor sigCSA_cry_5(3) xor '0' ;
sigCSA_cry_6(4) <= ( sigCSA_sum_5(4) and sigCSA_cry_5(3) ) or ( '0' and ( sigCSA_sum_5(4) xor sigCSA_cry_5(3) )) ;
sigCSA_sum_6(5) <= sigCSA_sum_5(5) xor sigCSA_cry_5(4) xor sigCSA_cry_4(0) ;
sigCSA_cry_6(5) <= ( sigCSA_sum_5(5) and sigCSA_cry_5(4) ) or ( sigCSA_cry_4(0) and ( sigCSA_sum_5(5) xor sigCSA_cry_5(4) )) ;
sigCSA_sum_6(6) <= sigCSA_sum_5(6) xor sigCSA_cry_5(5) xor sigCSA_cry_4(1) ;
sigCSA_cry_6(6) <= ( sigCSA_sum_5(6) and sigCSA_cry_5(5) ) or ( sigCSA_cry_4(1) and ( sigCSA_sum_5(6) xor sigCSA_cry_5(5) )) ;
sigCSA_sum_6(7) <= sigCSA_sum_5(7) xor sigCSA_cry_5(6) xor sigCSA_cry_4(2) ;
sigCSA_cry_6(7) <= ( sigCSA_sum_5(7) and sigCSA_cry_5(6) ) or ( sigCSA_cry_4(2) and ( sigCSA_sum_5(7) xor sigCSA_cry_5(6) )) ;
sigCSA_sum_6(8) <= sigCSA_sum_5(8) xor sigCSA_cry_5(7) xor sigCSA_cry_4(3) ;
sigCSA_cry_6(8) <= ( sigCSA_sum_5(8) and sigCSA_cry_5(7) ) or ( sigCSA_cry_4(3) and ( sigCSA_sum_5(8) xor sigCSA_cry_5(7) )) ;
sigCSA_sum_6(9) <= sigCSA_sum_5(9) xor sigCSA_cry_5(8) xor sigCSA_cry_4(4) ;
sigCSA_cry_6(9) <= ( sigCSA_sum_5(9) and sigCSA_cry_5(8) ) or ( sigCSA_cry_4(4) and ( sigCSA_sum_5(9) xor sigCSA_cry_5(8) )) ;
sigCSA_sum_6(10) <= sigCSA_sum_5(10) xor sigCSA_cry_5(9) xor sigCSA_cry_4(5) ;
sigCSA_cry_6(10) <= ( sigCSA_sum_5(10) and sigCSA_cry_5(9) ) or ( sigCSA_cry_4(5) and ( sigCSA_sum_5(10) xor sigCSA_cry_5(9) )) ;
sigCSA_sum_6(11) <= sigCSA_sum_5(11) xor sigCSA_cry_5(10) xor sigCSA_cry_4(6) ;
sigCSA_cry_6(11) <= ( sigCSA_sum_5(11) and sigCSA_cry_5(10) ) or ( sigCSA_cry_4(6) and ( sigCSA_sum_5(11) xor sigCSA_cry_5(10) )) ;
sigCSA_sum_6(12) <= sigCSA_sum_5(12) xor sigCSA_cry_5(11) xor sigCSA_cry_4(7) ;
sigCSA_cry_6(12) <= ( sigCSA_sum_5(12) and sigCSA_cry_5(11) ) or ( sigCSA_cry_4(7) and ( sigCSA_sum_5(12) xor sigCSA_cry_5(11) )) ;
sigCSA_sum_6(13) <= sigCSA_sum_5(13) xor sigCSA_cry_5(12) xor sigCSA_cry_4(8) ;
sigCSA_cry_6(13) <= ( sigCSA_sum_5(13) and sigCSA_cry_5(12) ) or ( sigCSA_cry_4(8) and ( sigCSA_sum_5(13) xor sigCSA_cry_5(12) )) ;
sigCSA_sum_6(14) <= sigCSA_sum_5(14) xor sigCSA_cry_5(13) xor sigCSA_cry_4(9) ;
sigCSA_cry_6(14) <= ( sigCSA_sum_5(14) and sigCSA_cry_5(13) ) or ( sigCSA_cry_4(9) and ( sigCSA_sum_5(14) xor sigCSA_cry_5(13) )) ;
sigCSA_sum_6(15) <= sigCSA_sum_5(15) xor sigCSA_cry_5(14) xor sigCSA_cry_4(10) ;
sigCSA_cry_6(15) <= ( sigCSA_sum_5(15) and sigCSA_cry_5(14) ) or ( sigCSA_cry_4(10) and ( sigCSA_sum_5(15) xor sigCSA_cry_5(14) )) ;
sigCSA_sum_6(16) <= sigCSA_sum_5(16) xor sigCSA_cry_5(15) xor sigCSA_cry_4(11) ;
sigCSA_cry_6(16) <= ( sigCSA_sum_5(16) and sigCSA_cry_5(15) ) or ( sigCSA_cry_4(11) and ( sigCSA_sum_5(16) xor sigCSA_cry_5(15) )) ;
sigCSA_sum_6(17) <= sigCSA_sum_5(17) xor sigCSA_cry_5(16) xor sigCSA_cry_4(12) ;
sigCSA_cry_6(17) <= ( sigCSA_sum_5(17) and sigCSA_cry_5(16) ) or ( sigCSA_cry_4(12) and ( sigCSA_sum_5(17) xor sigCSA_cry_5(16) )) ;
sigCSA_sum_6(18) <= sigCSA_sum_5(18) xor sigCSA_cry_5(17) xor sigCSA_cry_4(13) ;
sigCSA_cry_6(18) <= ( sigCSA_sum_5(18) and sigCSA_cry_5(17) ) or ( sigCSA_cry_4(13) and ( sigCSA_sum_5(18) xor sigCSA_cry_5(17) )) ;
sigCSA_sum_6(19) <= '0' xor sigCSA_cry_5(18) xor sigCSA_cry_4(14) ;
sigCSA_cry_6(19) <= ( '0' and sigCSA_cry_5(18) ) or ( sigCSA_cry_4(14) and ( '0' xor sigCSA_cry_5(18) )) ;
-- csa : 7
-- generating sigCSA_sum_7 and sigCSA_cry_7
sigCSA_sum_7(0) <= sigCSA_sum_6(0) xor '0' xor '0' ;
sigCSA_cry_7(0) <= ( sigCSA_sum_6(0) and '0' ) or ( '0' and ( sigCSA_sum_6(0) xor '0' )) ;
sigCSA_sum_7(1) <= sigCSA_sum_6(1) xor sigCSA_cry_6(0) xor '0' ;
sigCSA_cry_7(1) <= ( sigCSA_sum_6(1) and sigCSA_cry_6(0) ) or ( '0' and ( sigCSA_sum_6(1) xor sigCSA_cry_6(0) )) ;
sigCSA_sum_7(2) <= sigCSA_sum_6(2) xor sigCSA_cry_6(1) xor '0' ;
sigCSA_cry_7(2) <= ( sigCSA_sum_6(2) and sigCSA_cry_6(1) ) or ( '0' and ( sigCSA_sum_6(2) xor sigCSA_cry_6(1) )) ;
sigCSA_sum_7(3) <= sigCSA_sum_6(3) xor sigCSA_cry_6(2) xor '0' ;
sigCSA_cry_7(3) <= ( sigCSA_sum_6(3) and sigCSA_cry_6(2) ) or ( '0' and ( sigCSA_sum_6(3) xor sigCSA_cry_6(2) )) ;
sigCSA_sum_7(4) <= sigCSA_sum_6(4) xor sigCSA_cry_6(3) xor '0' ;
sigCSA_cry_7(4) <= ( sigCSA_sum_6(4) and sigCSA_cry_6(3) ) or ( '0' and ( sigCSA_sum_6(4) xor sigCSA_cry_6(3) )) ;
sigCSA_sum_7(5) <= sigCSA_sum_6(5) xor sigCSA_cry_6(4) xor '0' ;
sigCSA_cry_7(5) <= ( sigCSA_sum_6(5) and sigCSA_cry_6(4) ) or ( '0' and ( sigCSA_sum_6(5) xor sigCSA_cry_6(4) )) ;
sigCSA_sum_7(6) <= sigCSA_sum_6(6) xor sigCSA_cry_6(5) xor '0' ;
sigCSA_cry_7(6) <= ( sigCSA_sum_6(6) and sigCSA_cry_6(5) ) or ( '0' and ( sigCSA_sum_6(6) xor sigCSA_cry_6(5) )) ;
sigCSA_sum_7(7) <= sigCSA_sum_6(7) xor sigCSA_cry_6(6) xor '0' ;
sigCSA_cry_7(7) <= ( sigCSA_sum_6(7) and sigCSA_cry_6(6) ) or ( '0' and ( sigCSA_sum_6(7) xor sigCSA_cry_6(6) )) ;
sigCSA_sum_7(8) <= sigCSA_sum_6(8) xor sigCSA_cry_6(7) xor '0' ;
sigCSA_cry_7(8) <= ( sigCSA_sum_6(8) and sigCSA_cry_6(7) ) or ( '0' and ( sigCSA_sum_6(8) xor sigCSA_cry_6(7) )) ;
sigCSA_sum_7(9) <= sigCSA_sum_6(9) xor sigCSA_cry_6(8) xor pp9(0) ;
sigCSA_cry_7(9) <= ( sigCSA_sum_6(9) and sigCSA_cry_6(8) ) or ( pp9(0) and ( sigCSA_sum_6(9) xor sigCSA_cry_6(8) )) ;
sigCSA_sum_7(10) <= sigCSA_sum_6(10) xor sigCSA_cry_6(9) xor pp9(1) ;
sigCSA_cry_7(10) <= ( sigCSA_sum_6(10) and sigCSA_cry_6(9) ) or ( pp9(1) and ( sigCSA_sum_6(10) xor sigCSA_cry_6(9) )) ;
sigCSA_sum_7(11) <= sigCSA_sum_6(11) xor sigCSA_cry_6(10) xor pp9(2) ;
sigCSA_cry_7(11) <= ( sigCSA_sum_6(11) and sigCSA_cry_6(10) ) or ( pp9(2) and ( sigCSA_sum_6(11) xor sigCSA_cry_6(10) )) ;
sigCSA_sum_7(12) <= sigCSA_sum_6(12) xor sigCSA_cry_6(11) xor pp9(3) ;
sigCSA_cry_7(12) <= ( sigCSA_sum_6(12) and sigCSA_cry_6(11) ) or ( pp9(3) and ( sigCSA_sum_6(12) xor sigCSA_cry_6(11) )) ;
sigCSA_sum_7(13) <= sigCSA_sum_6(13) xor sigCSA_cry_6(12) xor pp9(4) ;
sigCSA_cry_7(13) <= ( sigCSA_sum_6(13) and sigCSA_cry_6(12) ) or ( pp9(4) and ( sigCSA_sum_6(13) xor sigCSA_cry_6(12) )) ;
sigCSA_sum_7(14) <= sigCSA_sum_6(14) xor sigCSA_cry_6(13) xor pp9(5) ;
sigCSA_cry_7(14) <= ( sigCSA_sum_6(14) and sigCSA_cry_6(13) ) or ( pp9(5) and ( sigCSA_sum_6(14) xor sigCSA_cry_6(13) )) ;
sigCSA_sum_7(15) <= sigCSA_sum_6(15) xor sigCSA_cry_6(14) xor pp9(6) ;
sigCSA_cry_7(15) <= ( sigCSA_sum_6(15) and sigCSA_cry_6(14) ) or ( pp9(6) and ( sigCSA_sum_6(15) xor sigCSA_cry_6(14) )) ;
sigCSA_sum_7(16) <= sigCSA_sum_6(16) xor sigCSA_cry_6(15) xor pp9(7) ;
sigCSA_cry_7(16) <= ( sigCSA_sum_6(16) and sigCSA_cry_6(15) ) or ( pp9(7) and ( sigCSA_sum_6(16) xor sigCSA_cry_6(15) )) ;
sigCSA_sum_7(17) <= sigCSA_sum_6(17) xor sigCSA_cry_6(16) xor pp9(8) ;
sigCSA_cry_7(17) <= ( sigCSA_sum_6(17) and sigCSA_cry_6(16) ) or ( pp9(8) and ( sigCSA_sum_6(17) xor sigCSA_cry_6(16) )) ;
sigCSA_sum_7(18) <= sigCSA_sum_6(18) xor sigCSA_cry_6(17) xor pp9(9) ;
sigCSA_cry_7(18) <= ( sigCSA_sum_6(18) and sigCSA_cry_6(17) ) or ( pp9(9) and ( sigCSA_sum_6(18) xor sigCSA_cry_6(17) )) ;
sigCSA_sum_7(19) <= sigCSA_sum_6(19) xor sigCSA_cry_6(18) xor '0' ;
sigCSA_cry_7(19) <= ( sigCSA_sum_6(19) and sigCSA_cry_6(18) ) or ( '0' and ( sigCSA_sum_6(19) xor sigCSA_cry_6(18) )) ;
sigCSA_sum_7(20) <= '0' xor sigCSA_cry_6(19) xor '0' ;
sigCSA_cry_7(20) <= ( '0' and sigCSA_cry_6(19) ) or ( '0' and ( '0' xor sigCSA_cry_6(19) )) ;
-- ******************
-- the final output
result(0) <= sigCSA_sum_7(0);
result(1) <= sigCSA_sum_7(1) xor sigCSA_cry_7(0) xor '0' ;
carry_rca(0) <= sigCSA_sum_7(1) and sigCSA_cry_7(0);
result(2) <= sigCSA_sum_7(2) xor sigCSA_cry_7(1) xor carry_rca(0);
carry_rca(1) <= ( sigCSA_sum_7(2) and sigCSA_cry_7(1)) or ( carry_rca(0) and ( sigCSA_sum_7(2) xor sigCSA_cry_7(1)));
result(3) <= sigCSA_sum_7(3) xor sigCSA_cry_7(2) xor carry_rca(1);
carry_rca(2) <= ( sigCSA_sum_7(3) and sigCSA_cry_7(2)) or ( carry_rca(1) and ( sigCSA_sum_7(3) xor sigCSA_cry_7(2)));
result(4) <= sigCSA_sum_7(4) xor sigCSA_cry_7(3) xor carry_rca(2);
carry_rca(3) <= ( sigCSA_sum_7(4) and sigCSA_cry_7(3)) or ( carry_rca(2) and ( sigCSA_sum_7(4) xor sigCSA_cry_7(3)));
result(5) <= sigCSA_sum_7(5) xor sigCSA_cry_7(4) xor carry_rca(3);
carry_rca(4) <= ( sigCSA_sum_7(5) and sigCSA_cry_7(4)) or ( carry_rca(3) and ( sigCSA_sum_7(5) xor sigCSA_cry_7(4)));
result(6) <= sigCSA_sum_7(6) xor sigCSA_cry_7(5) xor carry_rca(4);
carry_rca(5) <= ( sigCSA_sum_7(6) and sigCSA_cry_7(5)) or ( carry_rca(4) and ( sigCSA_sum_7(6) xor sigCSA_cry_7(5)));
result(7) <= sigCSA_sum_7(7) xor sigCSA_cry_7(6) xor carry_rca(5);
carry_rca(6) <= ( sigCSA_sum_7(7) and sigCSA_cry_7(6)) or ( carry_rca(5) and ( sigCSA_sum_7(7) xor sigCSA_cry_7(6)));
result(8) <= sigCSA_sum_7(8) xor sigCSA_cry_7(7) xor carry_rca(6);
carry_rca(7) <= ( sigCSA_sum_7(8) and sigCSA_cry_7(7)) or ( carry_rca(6) and ( sigCSA_sum_7(8) xor sigCSA_cry_7(7)));
result(9) <= sigCSA_sum_7(9) xor sigCSA_cry_7(8) xor carry_rca(7);
carry_rca(8) <= ( sigCSA_sum_7(9) and sigCSA_cry_7(8)) or ( carry_rca(7) and ( sigCSA_sum_7(9) xor sigCSA_cry_7(8)));
result(10) <= sigCSA_sum_7(10) xor sigCSA_cry_7(9) xor carry_rca(8);
carry_rca(9) <= ( sigCSA_sum_7(10) and sigCSA_cry_7(9)) or ( carry_rca(8) and ( sigCSA_sum_7(10) xor sigCSA_cry_7(9)));
result(11) <= sigCSA_sum_7(11) xor sigCSA_cry_7(10) xor carry_rca(9);
carry_rca(10) <= ( sigCSA_sum_7(11) and sigCSA_cry_7(10)) or ( carry_rca(9) and ( sigCSA_sum_7(11) xor sigCSA_cry_7(10)));
result(12) <= sigCSA_sum_7(12) xor sigCSA_cry_7(11) xor carry_rca(10);
carry_rca(11) <= ( sigCSA_sum_7(12) and sigCSA_cry_7(11)) or ( carry_rca(10) and ( sigCSA_sum_7(12) xor sigCSA_cry_7(11)));
result(13) <= sigCSA_sum_7(13) xor sigCSA_cry_7(12) xor carry_rca(11);
carry_rca(12) <= ( sigCSA_sum_7(13) and sigCSA_cry_7(12)) or ( carry_rca(11) and ( sigCSA_sum_7(13) xor sigCSA_cry_7(12)));
result(14) <= sigCSA_sum_7(14) xor sigCSA_cry_7(13) xor carry_rca(12);
carry_rca(13) <= ( sigCSA_sum_7(14) and sigCSA_cry_7(13)) or ( carry_rca(12) and ( sigCSA_sum_7(14) xor sigCSA_cry_7(13)));
result(15) <= sigCSA_sum_7(15) xor sigCSA_cry_7(14) xor carry_rca(13);
carry_rca(14) <= ( sigCSA_sum_7(15) and sigCSA_cry_7(14)) or ( carry_rca(13) and ( sigCSA_sum_7(15) xor sigCSA_cry_7(14)));
result(16) <= sigCSA_sum_7(16) xor sigCSA_cry_7(15) xor carry_rca(14);
carry_rca(15) <= ( sigCSA_sum_7(16) and sigCSA_cry_7(15)) or ( carry_rca(14) and ( sigCSA_sum_7(16) xor sigCSA_cry_7(15)));
result(17) <= sigCSA_sum_7(17) xor sigCSA_cry_7(16) xor carry_rca(15);
carry_rca(16) <= ( sigCSA_sum_7(17) and sigCSA_cry_7(16)) or ( carry_rca(15) and ( sigCSA_sum_7(17) xor sigCSA_cry_7(16)));
result(18) <= sigCSA_sum_7(18) xor sigCSA_cry_7(17) xor carry_rca(16);
carry_rca(17) <= ( sigCSA_sum_7(18) and sigCSA_cry_7(17)) or ( carry_rca(16) and ( sigCSA_sum_7(18) xor sigCSA_cry_7(17)));
result(19) <= sigCSA_sum_7(19) xor sigCSA_cry_7(18) xor carry_rca(17);
carry_rca(18) <= ( sigCSA_sum_7(19) and sigCSA_cry_7(18)) or ( carry_rca(17) and ( sigCSA_sum_7(19) xor sigCSA_cry_7(18)));
result(20) <= sigCSA_sum_7(20) xor sigCSA_cry_7(19) xor carry_rca(18);
carry_rca(19) <= ( sigCSA_sum_7(20) and sigCSA_cry_7(19)) or ( carry_rca(18) and ( sigCSA_sum_7(20) xor sigCSA_cry_7(19)));
result(20) <= sigCSA_cry_7(19) xor carry_rca(18);
end rtl;