mirror of
https://github.com/ehw-fit/ariths-gen.git
synced 2025-04-20 13:51:23 +01:00
4485 lines
361 KiB
C
4485 lines
361 KiB
C
#include <stdio.h>
|
|
#include <stdint.h>
|
|
|
|
uint8_t and_gate(uint8_t a, uint8_t b){
|
|
return ((a >> 0) & 0x01) & ((b >> 0) & 0x01);
|
|
}
|
|
|
|
uint8_t xor_gate(uint8_t a, uint8_t b){
|
|
return ((a >> 0) & 0x01) ^ ((b >> 0) & 0x01);
|
|
}
|
|
|
|
uint8_t or_gate(uint8_t a, uint8_t b){
|
|
return ((a >> 0) & 0x01) | ((b >> 0) & 0x01);
|
|
}
|
|
|
|
uint8_t nand_gate(uint8_t a, uint8_t b){
|
|
return ~(((a >> 0) & 0x01) & ((b >> 0) & 0x01)) & 0x01;
|
|
}
|
|
|
|
uint8_t not_gate(uint8_t a){
|
|
return ~(((a >> 0) & 0x01)) & 0x01;
|
|
}
|
|
|
|
uint8_t ha(uint8_t a, uint8_t b){
|
|
uint8_t ha_out = 0;
|
|
uint8_t ha_xor0 = 0;
|
|
uint8_t ha_and0 = 0;
|
|
|
|
ha_xor0 = xor_gate(((a >> 0) & 0x01), ((b >> 0) & 0x01));
|
|
ha_and0 = and_gate(((a >> 0) & 0x01), ((b >> 0) & 0x01));
|
|
|
|
ha_out |= ((ha_xor0 >> 0) & 0x01ull) << 0;
|
|
ha_out |= ((ha_and0 >> 0) & 0x01ull) << 1;
|
|
return ha_out;
|
|
}
|
|
|
|
uint8_t fa(uint8_t a, uint8_t b, uint8_t cin){
|
|
uint8_t fa_out = 0;
|
|
uint8_t fa_xor0 = 0;
|
|
uint8_t fa_and0 = 0;
|
|
uint8_t fa_xor1 = 0;
|
|
uint8_t fa_and1 = 0;
|
|
uint8_t fa_or0 = 0;
|
|
|
|
fa_xor0 = xor_gate(((a >> 0) & 0x01), ((b >> 0) & 0x01));
|
|
fa_and0 = and_gate(((a >> 0) & 0x01), ((b >> 0) & 0x01));
|
|
fa_xor1 = xor_gate(((fa_xor0 >> 0) & 0x01), ((cin >> 0) & 0x01));
|
|
fa_and1 = and_gate(((fa_xor0 >> 0) & 0x01), ((cin >> 0) & 0x01));
|
|
fa_or0 = or_gate(((fa_and0 >> 0) & 0x01), ((fa_and1 >> 0) & 0x01));
|
|
|
|
fa_out |= ((fa_xor1 >> 0) & 0x01ull) << 0;
|
|
fa_out |= ((fa_or0 >> 0) & 0x01ull) << 1;
|
|
return fa_out;
|
|
}
|
|
|
|
uint8_t pg_logic(uint8_t a, uint8_t b){
|
|
uint8_t pg_logic_out = 0;
|
|
uint8_t pg_logic_or0 = 0;
|
|
uint8_t pg_logic_and0 = 0;
|
|
uint8_t pg_logic_xor0 = 0;
|
|
|
|
pg_logic_or0 = or_gate(((a >> 0) & 0x01), ((b >> 0) & 0x01));
|
|
pg_logic_and0 = and_gate(((a >> 0) & 0x01), ((b >> 0) & 0x01));
|
|
pg_logic_xor0 = xor_gate(((a >> 0) & 0x01), ((b >> 0) & 0x01));
|
|
|
|
pg_logic_out |= ((pg_logic_or0 >> 0) & 0x01ull) << 0;
|
|
pg_logic_out |= ((pg_logic_and0 >> 0) & 0x01ull) << 1;
|
|
pg_logic_out |= ((pg_logic_xor0 >> 0) & 0x01ull) << 2;
|
|
return pg_logic_out;
|
|
}
|
|
|
|
uint64_t u_cla46(uint64_t a, uint64_t b){
|
|
uint64_t u_cla46_out = 0;
|
|
uint8_t u_cla46_pg_logic0_or0 = 0;
|
|
uint8_t u_cla46_pg_logic0_and0 = 0;
|
|
uint8_t u_cla46_pg_logic0_xor0 = 0;
|
|
uint8_t u_cla46_pg_logic1_or0 = 0;
|
|
uint8_t u_cla46_pg_logic1_and0 = 0;
|
|
uint8_t u_cla46_pg_logic1_xor0 = 0;
|
|
uint8_t u_cla46_xor1 = 0;
|
|
uint8_t u_cla46_and0 = 0;
|
|
uint8_t u_cla46_or0 = 0;
|
|
uint8_t u_cla46_pg_logic2_or0 = 0;
|
|
uint8_t u_cla46_pg_logic2_and0 = 0;
|
|
uint8_t u_cla46_pg_logic2_xor0 = 0;
|
|
uint8_t u_cla46_xor2 = 0;
|
|
uint8_t u_cla46_and1 = 0;
|
|
uint8_t u_cla46_and2 = 0;
|
|
uint8_t u_cla46_and3 = 0;
|
|
uint8_t u_cla46_and4 = 0;
|
|
uint8_t u_cla46_or1 = 0;
|
|
uint8_t u_cla46_or2 = 0;
|
|
uint8_t u_cla46_pg_logic3_or0 = 0;
|
|
uint8_t u_cla46_pg_logic3_and0 = 0;
|
|
uint8_t u_cla46_pg_logic3_xor0 = 0;
|
|
uint8_t u_cla46_xor3 = 0;
|
|
uint8_t u_cla46_and5 = 0;
|
|
uint8_t u_cla46_and6 = 0;
|
|
uint8_t u_cla46_and7 = 0;
|
|
uint8_t u_cla46_and8 = 0;
|
|
uint8_t u_cla46_and9 = 0;
|
|
uint8_t u_cla46_and10 = 0;
|
|
uint8_t u_cla46_and11 = 0;
|
|
uint8_t u_cla46_or3 = 0;
|
|
uint8_t u_cla46_or4 = 0;
|
|
uint8_t u_cla46_or5 = 0;
|
|
uint8_t u_cla46_pg_logic4_or0 = 0;
|
|
uint8_t u_cla46_pg_logic4_and0 = 0;
|
|
uint8_t u_cla46_pg_logic4_xor0 = 0;
|
|
uint8_t u_cla46_xor4 = 0;
|
|
uint8_t u_cla46_and12 = 0;
|
|
uint8_t u_cla46_or6 = 0;
|
|
uint8_t u_cla46_pg_logic5_or0 = 0;
|
|
uint8_t u_cla46_pg_logic5_and0 = 0;
|
|
uint8_t u_cla46_pg_logic5_xor0 = 0;
|
|
uint8_t u_cla46_xor5 = 0;
|
|
uint8_t u_cla46_and13 = 0;
|
|
uint8_t u_cla46_and14 = 0;
|
|
uint8_t u_cla46_and15 = 0;
|
|
uint8_t u_cla46_or7 = 0;
|
|
uint8_t u_cla46_or8 = 0;
|
|
uint8_t u_cla46_pg_logic6_or0 = 0;
|
|
uint8_t u_cla46_pg_logic6_and0 = 0;
|
|
uint8_t u_cla46_pg_logic6_xor0 = 0;
|
|
uint8_t u_cla46_xor6 = 0;
|
|
uint8_t u_cla46_and16 = 0;
|
|
uint8_t u_cla46_and17 = 0;
|
|
uint8_t u_cla46_and18 = 0;
|
|
uint8_t u_cla46_and19 = 0;
|
|
uint8_t u_cla46_and20 = 0;
|
|
uint8_t u_cla46_and21 = 0;
|
|
uint8_t u_cla46_or9 = 0;
|
|
uint8_t u_cla46_or10 = 0;
|
|
uint8_t u_cla46_or11 = 0;
|
|
uint8_t u_cla46_pg_logic7_or0 = 0;
|
|
uint8_t u_cla46_pg_logic7_and0 = 0;
|
|
uint8_t u_cla46_pg_logic7_xor0 = 0;
|
|
uint8_t u_cla46_xor7 = 0;
|
|
uint8_t u_cla46_and22 = 0;
|
|
uint8_t u_cla46_and23 = 0;
|
|
uint8_t u_cla46_and24 = 0;
|
|
uint8_t u_cla46_and25 = 0;
|
|
uint8_t u_cla46_and26 = 0;
|
|
uint8_t u_cla46_and27 = 0;
|
|
uint8_t u_cla46_and28 = 0;
|
|
uint8_t u_cla46_and29 = 0;
|
|
uint8_t u_cla46_and30 = 0;
|
|
uint8_t u_cla46_and31 = 0;
|
|
uint8_t u_cla46_or12 = 0;
|
|
uint8_t u_cla46_or13 = 0;
|
|
uint8_t u_cla46_or14 = 0;
|
|
uint8_t u_cla46_or15 = 0;
|
|
uint8_t u_cla46_pg_logic8_or0 = 0;
|
|
uint8_t u_cla46_pg_logic8_and0 = 0;
|
|
uint8_t u_cla46_pg_logic8_xor0 = 0;
|
|
uint8_t u_cla46_xor8 = 0;
|
|
uint8_t u_cla46_and32 = 0;
|
|
uint8_t u_cla46_or16 = 0;
|
|
uint8_t u_cla46_pg_logic9_or0 = 0;
|
|
uint8_t u_cla46_pg_logic9_and0 = 0;
|
|
uint8_t u_cla46_pg_logic9_xor0 = 0;
|
|
uint8_t u_cla46_xor9 = 0;
|
|
uint8_t u_cla46_and33 = 0;
|
|
uint8_t u_cla46_and34 = 0;
|
|
uint8_t u_cla46_and35 = 0;
|
|
uint8_t u_cla46_or17 = 0;
|
|
uint8_t u_cla46_or18 = 0;
|
|
uint8_t u_cla46_pg_logic10_or0 = 0;
|
|
uint8_t u_cla46_pg_logic10_and0 = 0;
|
|
uint8_t u_cla46_pg_logic10_xor0 = 0;
|
|
uint8_t u_cla46_xor10 = 0;
|
|
uint8_t u_cla46_and36 = 0;
|
|
uint8_t u_cla46_and37 = 0;
|
|
uint8_t u_cla46_and38 = 0;
|
|
uint8_t u_cla46_and39 = 0;
|
|
uint8_t u_cla46_and40 = 0;
|
|
uint8_t u_cla46_and41 = 0;
|
|
uint8_t u_cla46_or19 = 0;
|
|
uint8_t u_cla46_or20 = 0;
|
|
uint8_t u_cla46_or21 = 0;
|
|
uint8_t u_cla46_pg_logic11_or0 = 0;
|
|
uint8_t u_cla46_pg_logic11_and0 = 0;
|
|
uint8_t u_cla46_pg_logic11_xor0 = 0;
|
|
uint8_t u_cla46_xor11 = 0;
|
|
uint8_t u_cla46_and42 = 0;
|
|
uint8_t u_cla46_and43 = 0;
|
|
uint8_t u_cla46_and44 = 0;
|
|
uint8_t u_cla46_and45 = 0;
|
|
uint8_t u_cla46_and46 = 0;
|
|
uint8_t u_cla46_and47 = 0;
|
|
uint8_t u_cla46_and48 = 0;
|
|
uint8_t u_cla46_and49 = 0;
|
|
uint8_t u_cla46_and50 = 0;
|
|
uint8_t u_cla46_and51 = 0;
|
|
uint8_t u_cla46_or22 = 0;
|
|
uint8_t u_cla46_or23 = 0;
|
|
uint8_t u_cla46_or24 = 0;
|
|
uint8_t u_cla46_or25 = 0;
|
|
uint8_t u_cla46_pg_logic12_or0 = 0;
|
|
uint8_t u_cla46_pg_logic12_and0 = 0;
|
|
uint8_t u_cla46_pg_logic12_xor0 = 0;
|
|
uint8_t u_cla46_xor12 = 0;
|
|
uint8_t u_cla46_and52 = 0;
|
|
uint8_t u_cla46_or26 = 0;
|
|
uint8_t u_cla46_pg_logic13_or0 = 0;
|
|
uint8_t u_cla46_pg_logic13_and0 = 0;
|
|
uint8_t u_cla46_pg_logic13_xor0 = 0;
|
|
uint8_t u_cla46_xor13 = 0;
|
|
uint8_t u_cla46_and53 = 0;
|
|
uint8_t u_cla46_and54 = 0;
|
|
uint8_t u_cla46_and55 = 0;
|
|
uint8_t u_cla46_or27 = 0;
|
|
uint8_t u_cla46_or28 = 0;
|
|
uint8_t u_cla46_pg_logic14_or0 = 0;
|
|
uint8_t u_cla46_pg_logic14_and0 = 0;
|
|
uint8_t u_cla46_pg_logic14_xor0 = 0;
|
|
uint8_t u_cla46_xor14 = 0;
|
|
uint8_t u_cla46_and56 = 0;
|
|
uint8_t u_cla46_and57 = 0;
|
|
uint8_t u_cla46_and58 = 0;
|
|
uint8_t u_cla46_and59 = 0;
|
|
uint8_t u_cla46_and60 = 0;
|
|
uint8_t u_cla46_and61 = 0;
|
|
uint8_t u_cla46_or29 = 0;
|
|
uint8_t u_cla46_or30 = 0;
|
|
uint8_t u_cla46_or31 = 0;
|
|
uint8_t u_cla46_pg_logic15_or0 = 0;
|
|
uint8_t u_cla46_pg_logic15_and0 = 0;
|
|
uint8_t u_cla46_pg_logic15_xor0 = 0;
|
|
uint8_t u_cla46_xor15 = 0;
|
|
uint8_t u_cla46_and62 = 0;
|
|
uint8_t u_cla46_and63 = 0;
|
|
uint8_t u_cla46_and64 = 0;
|
|
uint8_t u_cla46_and65 = 0;
|
|
uint8_t u_cla46_and66 = 0;
|
|
uint8_t u_cla46_and67 = 0;
|
|
uint8_t u_cla46_and68 = 0;
|
|
uint8_t u_cla46_and69 = 0;
|
|
uint8_t u_cla46_and70 = 0;
|
|
uint8_t u_cla46_and71 = 0;
|
|
uint8_t u_cla46_or32 = 0;
|
|
uint8_t u_cla46_or33 = 0;
|
|
uint8_t u_cla46_or34 = 0;
|
|
uint8_t u_cla46_or35 = 0;
|
|
uint8_t u_cla46_pg_logic16_or0 = 0;
|
|
uint8_t u_cla46_pg_logic16_and0 = 0;
|
|
uint8_t u_cla46_pg_logic16_xor0 = 0;
|
|
uint8_t u_cla46_xor16 = 0;
|
|
uint8_t u_cla46_and72 = 0;
|
|
uint8_t u_cla46_or36 = 0;
|
|
uint8_t u_cla46_pg_logic17_or0 = 0;
|
|
uint8_t u_cla46_pg_logic17_and0 = 0;
|
|
uint8_t u_cla46_pg_logic17_xor0 = 0;
|
|
uint8_t u_cla46_xor17 = 0;
|
|
uint8_t u_cla46_and73 = 0;
|
|
uint8_t u_cla46_and74 = 0;
|
|
uint8_t u_cla46_and75 = 0;
|
|
uint8_t u_cla46_or37 = 0;
|
|
uint8_t u_cla46_or38 = 0;
|
|
uint8_t u_cla46_pg_logic18_or0 = 0;
|
|
uint8_t u_cla46_pg_logic18_and0 = 0;
|
|
uint8_t u_cla46_pg_logic18_xor0 = 0;
|
|
uint8_t u_cla46_xor18 = 0;
|
|
uint8_t u_cla46_and76 = 0;
|
|
uint8_t u_cla46_and77 = 0;
|
|
uint8_t u_cla46_and78 = 0;
|
|
uint8_t u_cla46_and79 = 0;
|
|
uint8_t u_cla46_and80 = 0;
|
|
uint8_t u_cla46_and81 = 0;
|
|
uint8_t u_cla46_or39 = 0;
|
|
uint8_t u_cla46_or40 = 0;
|
|
uint8_t u_cla46_or41 = 0;
|
|
uint8_t u_cla46_pg_logic19_or0 = 0;
|
|
uint8_t u_cla46_pg_logic19_and0 = 0;
|
|
uint8_t u_cla46_pg_logic19_xor0 = 0;
|
|
uint8_t u_cla46_xor19 = 0;
|
|
uint8_t u_cla46_and82 = 0;
|
|
uint8_t u_cla46_and83 = 0;
|
|
uint8_t u_cla46_and84 = 0;
|
|
uint8_t u_cla46_and85 = 0;
|
|
uint8_t u_cla46_and86 = 0;
|
|
uint8_t u_cla46_and87 = 0;
|
|
uint8_t u_cla46_and88 = 0;
|
|
uint8_t u_cla46_and89 = 0;
|
|
uint8_t u_cla46_and90 = 0;
|
|
uint8_t u_cla46_and91 = 0;
|
|
uint8_t u_cla46_or42 = 0;
|
|
uint8_t u_cla46_or43 = 0;
|
|
uint8_t u_cla46_or44 = 0;
|
|
uint8_t u_cla46_or45 = 0;
|
|
uint8_t u_cla46_pg_logic20_or0 = 0;
|
|
uint8_t u_cla46_pg_logic20_and0 = 0;
|
|
uint8_t u_cla46_pg_logic20_xor0 = 0;
|
|
uint8_t u_cla46_xor20 = 0;
|
|
uint8_t u_cla46_and92 = 0;
|
|
uint8_t u_cla46_or46 = 0;
|
|
uint8_t u_cla46_pg_logic21_or0 = 0;
|
|
uint8_t u_cla46_pg_logic21_and0 = 0;
|
|
uint8_t u_cla46_pg_logic21_xor0 = 0;
|
|
uint8_t u_cla46_xor21 = 0;
|
|
uint8_t u_cla46_and93 = 0;
|
|
uint8_t u_cla46_and94 = 0;
|
|
uint8_t u_cla46_and95 = 0;
|
|
uint8_t u_cla46_or47 = 0;
|
|
uint8_t u_cla46_or48 = 0;
|
|
uint8_t u_cla46_pg_logic22_or0 = 0;
|
|
uint8_t u_cla46_pg_logic22_and0 = 0;
|
|
uint8_t u_cla46_pg_logic22_xor0 = 0;
|
|
uint8_t u_cla46_xor22 = 0;
|
|
uint8_t u_cla46_and96 = 0;
|
|
uint8_t u_cla46_and97 = 0;
|
|
uint8_t u_cla46_and98 = 0;
|
|
uint8_t u_cla46_and99 = 0;
|
|
uint8_t u_cla46_and100 = 0;
|
|
uint8_t u_cla46_and101 = 0;
|
|
uint8_t u_cla46_or49 = 0;
|
|
uint8_t u_cla46_or50 = 0;
|
|
uint8_t u_cla46_or51 = 0;
|
|
uint8_t u_cla46_pg_logic23_or0 = 0;
|
|
uint8_t u_cla46_pg_logic23_and0 = 0;
|
|
uint8_t u_cla46_pg_logic23_xor0 = 0;
|
|
uint8_t u_cla46_xor23 = 0;
|
|
uint8_t u_cla46_and102 = 0;
|
|
uint8_t u_cla46_and103 = 0;
|
|
uint8_t u_cla46_and104 = 0;
|
|
uint8_t u_cla46_and105 = 0;
|
|
uint8_t u_cla46_and106 = 0;
|
|
uint8_t u_cla46_and107 = 0;
|
|
uint8_t u_cla46_and108 = 0;
|
|
uint8_t u_cla46_and109 = 0;
|
|
uint8_t u_cla46_and110 = 0;
|
|
uint8_t u_cla46_and111 = 0;
|
|
uint8_t u_cla46_or52 = 0;
|
|
uint8_t u_cla46_or53 = 0;
|
|
uint8_t u_cla46_or54 = 0;
|
|
uint8_t u_cla46_or55 = 0;
|
|
uint8_t u_cla46_pg_logic24_or0 = 0;
|
|
uint8_t u_cla46_pg_logic24_and0 = 0;
|
|
uint8_t u_cla46_pg_logic24_xor0 = 0;
|
|
uint8_t u_cla46_xor24 = 0;
|
|
uint8_t u_cla46_and112 = 0;
|
|
uint8_t u_cla46_or56 = 0;
|
|
uint8_t u_cla46_pg_logic25_or0 = 0;
|
|
uint8_t u_cla46_pg_logic25_and0 = 0;
|
|
uint8_t u_cla46_pg_logic25_xor0 = 0;
|
|
uint8_t u_cla46_xor25 = 0;
|
|
uint8_t u_cla46_and113 = 0;
|
|
uint8_t u_cla46_and114 = 0;
|
|
uint8_t u_cla46_and115 = 0;
|
|
uint8_t u_cla46_or57 = 0;
|
|
uint8_t u_cla46_or58 = 0;
|
|
uint8_t u_cla46_pg_logic26_or0 = 0;
|
|
uint8_t u_cla46_pg_logic26_and0 = 0;
|
|
uint8_t u_cla46_pg_logic26_xor0 = 0;
|
|
uint8_t u_cla46_xor26 = 0;
|
|
uint8_t u_cla46_and116 = 0;
|
|
uint8_t u_cla46_and117 = 0;
|
|
uint8_t u_cla46_and118 = 0;
|
|
uint8_t u_cla46_and119 = 0;
|
|
uint8_t u_cla46_and120 = 0;
|
|
uint8_t u_cla46_and121 = 0;
|
|
uint8_t u_cla46_or59 = 0;
|
|
uint8_t u_cla46_or60 = 0;
|
|
uint8_t u_cla46_or61 = 0;
|
|
uint8_t u_cla46_pg_logic27_or0 = 0;
|
|
uint8_t u_cla46_pg_logic27_and0 = 0;
|
|
uint8_t u_cla46_pg_logic27_xor0 = 0;
|
|
uint8_t u_cla46_xor27 = 0;
|
|
uint8_t u_cla46_and122 = 0;
|
|
uint8_t u_cla46_and123 = 0;
|
|
uint8_t u_cla46_and124 = 0;
|
|
uint8_t u_cla46_and125 = 0;
|
|
uint8_t u_cla46_and126 = 0;
|
|
uint8_t u_cla46_and127 = 0;
|
|
uint8_t u_cla46_and128 = 0;
|
|
uint8_t u_cla46_and129 = 0;
|
|
uint8_t u_cla46_and130 = 0;
|
|
uint8_t u_cla46_and131 = 0;
|
|
uint8_t u_cla46_or62 = 0;
|
|
uint8_t u_cla46_or63 = 0;
|
|
uint8_t u_cla46_or64 = 0;
|
|
uint8_t u_cla46_or65 = 0;
|
|
uint8_t u_cla46_pg_logic28_or0 = 0;
|
|
uint8_t u_cla46_pg_logic28_and0 = 0;
|
|
uint8_t u_cla46_pg_logic28_xor0 = 0;
|
|
uint8_t u_cla46_xor28 = 0;
|
|
uint8_t u_cla46_and132 = 0;
|
|
uint8_t u_cla46_or66 = 0;
|
|
uint8_t u_cla46_pg_logic29_or0 = 0;
|
|
uint8_t u_cla46_pg_logic29_and0 = 0;
|
|
uint8_t u_cla46_pg_logic29_xor0 = 0;
|
|
uint8_t u_cla46_xor29 = 0;
|
|
uint8_t u_cla46_and133 = 0;
|
|
uint8_t u_cla46_and134 = 0;
|
|
uint8_t u_cla46_and135 = 0;
|
|
uint8_t u_cla46_or67 = 0;
|
|
uint8_t u_cla46_or68 = 0;
|
|
uint8_t u_cla46_pg_logic30_or0 = 0;
|
|
uint8_t u_cla46_pg_logic30_and0 = 0;
|
|
uint8_t u_cla46_pg_logic30_xor0 = 0;
|
|
uint8_t u_cla46_xor30 = 0;
|
|
uint8_t u_cla46_and136 = 0;
|
|
uint8_t u_cla46_and137 = 0;
|
|
uint8_t u_cla46_and138 = 0;
|
|
uint8_t u_cla46_and139 = 0;
|
|
uint8_t u_cla46_and140 = 0;
|
|
uint8_t u_cla46_and141 = 0;
|
|
uint8_t u_cla46_or69 = 0;
|
|
uint8_t u_cla46_or70 = 0;
|
|
uint8_t u_cla46_or71 = 0;
|
|
uint8_t u_cla46_pg_logic31_or0 = 0;
|
|
uint8_t u_cla46_pg_logic31_and0 = 0;
|
|
uint8_t u_cla46_pg_logic31_xor0 = 0;
|
|
uint8_t u_cla46_xor31 = 0;
|
|
uint8_t u_cla46_and142 = 0;
|
|
uint8_t u_cla46_and143 = 0;
|
|
uint8_t u_cla46_and144 = 0;
|
|
uint8_t u_cla46_and145 = 0;
|
|
uint8_t u_cla46_and146 = 0;
|
|
uint8_t u_cla46_and147 = 0;
|
|
uint8_t u_cla46_and148 = 0;
|
|
uint8_t u_cla46_and149 = 0;
|
|
uint8_t u_cla46_and150 = 0;
|
|
uint8_t u_cla46_and151 = 0;
|
|
uint8_t u_cla46_or72 = 0;
|
|
uint8_t u_cla46_or73 = 0;
|
|
uint8_t u_cla46_or74 = 0;
|
|
uint8_t u_cla46_or75 = 0;
|
|
uint8_t u_cla46_pg_logic32_or0 = 0;
|
|
uint8_t u_cla46_pg_logic32_and0 = 0;
|
|
uint8_t u_cla46_pg_logic32_xor0 = 0;
|
|
uint8_t u_cla46_xor32 = 0;
|
|
uint8_t u_cla46_and152 = 0;
|
|
uint8_t u_cla46_or76 = 0;
|
|
uint8_t u_cla46_pg_logic33_or0 = 0;
|
|
uint8_t u_cla46_pg_logic33_and0 = 0;
|
|
uint8_t u_cla46_pg_logic33_xor0 = 0;
|
|
uint8_t u_cla46_xor33 = 0;
|
|
uint8_t u_cla46_and153 = 0;
|
|
uint8_t u_cla46_and154 = 0;
|
|
uint8_t u_cla46_and155 = 0;
|
|
uint8_t u_cla46_or77 = 0;
|
|
uint8_t u_cla46_or78 = 0;
|
|
uint8_t u_cla46_pg_logic34_or0 = 0;
|
|
uint8_t u_cla46_pg_logic34_and0 = 0;
|
|
uint8_t u_cla46_pg_logic34_xor0 = 0;
|
|
uint8_t u_cla46_xor34 = 0;
|
|
uint8_t u_cla46_and156 = 0;
|
|
uint8_t u_cla46_and157 = 0;
|
|
uint8_t u_cla46_and158 = 0;
|
|
uint8_t u_cla46_and159 = 0;
|
|
uint8_t u_cla46_and160 = 0;
|
|
uint8_t u_cla46_and161 = 0;
|
|
uint8_t u_cla46_or79 = 0;
|
|
uint8_t u_cla46_or80 = 0;
|
|
uint8_t u_cla46_or81 = 0;
|
|
uint8_t u_cla46_pg_logic35_or0 = 0;
|
|
uint8_t u_cla46_pg_logic35_and0 = 0;
|
|
uint8_t u_cla46_pg_logic35_xor0 = 0;
|
|
uint8_t u_cla46_xor35 = 0;
|
|
uint8_t u_cla46_and162 = 0;
|
|
uint8_t u_cla46_and163 = 0;
|
|
uint8_t u_cla46_and164 = 0;
|
|
uint8_t u_cla46_and165 = 0;
|
|
uint8_t u_cla46_and166 = 0;
|
|
uint8_t u_cla46_and167 = 0;
|
|
uint8_t u_cla46_and168 = 0;
|
|
uint8_t u_cla46_and169 = 0;
|
|
uint8_t u_cla46_and170 = 0;
|
|
uint8_t u_cla46_and171 = 0;
|
|
uint8_t u_cla46_or82 = 0;
|
|
uint8_t u_cla46_or83 = 0;
|
|
uint8_t u_cla46_or84 = 0;
|
|
uint8_t u_cla46_or85 = 0;
|
|
uint8_t u_cla46_pg_logic36_or0 = 0;
|
|
uint8_t u_cla46_pg_logic36_and0 = 0;
|
|
uint8_t u_cla46_pg_logic36_xor0 = 0;
|
|
uint8_t u_cla46_xor36 = 0;
|
|
uint8_t u_cla46_and172 = 0;
|
|
uint8_t u_cla46_or86 = 0;
|
|
uint8_t u_cla46_pg_logic37_or0 = 0;
|
|
uint8_t u_cla46_pg_logic37_and0 = 0;
|
|
uint8_t u_cla46_pg_logic37_xor0 = 0;
|
|
uint8_t u_cla46_xor37 = 0;
|
|
uint8_t u_cla46_and173 = 0;
|
|
uint8_t u_cla46_and174 = 0;
|
|
uint8_t u_cla46_and175 = 0;
|
|
uint8_t u_cla46_or87 = 0;
|
|
uint8_t u_cla46_or88 = 0;
|
|
uint8_t u_cla46_pg_logic38_or0 = 0;
|
|
uint8_t u_cla46_pg_logic38_and0 = 0;
|
|
uint8_t u_cla46_pg_logic38_xor0 = 0;
|
|
uint8_t u_cla46_xor38 = 0;
|
|
uint8_t u_cla46_and176 = 0;
|
|
uint8_t u_cla46_and177 = 0;
|
|
uint8_t u_cla46_and178 = 0;
|
|
uint8_t u_cla46_and179 = 0;
|
|
uint8_t u_cla46_and180 = 0;
|
|
uint8_t u_cla46_and181 = 0;
|
|
uint8_t u_cla46_or89 = 0;
|
|
uint8_t u_cla46_or90 = 0;
|
|
uint8_t u_cla46_or91 = 0;
|
|
uint8_t u_cla46_pg_logic39_or0 = 0;
|
|
uint8_t u_cla46_pg_logic39_and0 = 0;
|
|
uint8_t u_cla46_pg_logic39_xor0 = 0;
|
|
uint8_t u_cla46_xor39 = 0;
|
|
uint8_t u_cla46_and182 = 0;
|
|
uint8_t u_cla46_and183 = 0;
|
|
uint8_t u_cla46_and184 = 0;
|
|
uint8_t u_cla46_and185 = 0;
|
|
uint8_t u_cla46_and186 = 0;
|
|
uint8_t u_cla46_and187 = 0;
|
|
uint8_t u_cla46_and188 = 0;
|
|
uint8_t u_cla46_and189 = 0;
|
|
uint8_t u_cla46_and190 = 0;
|
|
uint8_t u_cla46_and191 = 0;
|
|
uint8_t u_cla46_or92 = 0;
|
|
uint8_t u_cla46_or93 = 0;
|
|
uint8_t u_cla46_or94 = 0;
|
|
uint8_t u_cla46_or95 = 0;
|
|
uint8_t u_cla46_pg_logic40_or0 = 0;
|
|
uint8_t u_cla46_pg_logic40_and0 = 0;
|
|
uint8_t u_cla46_pg_logic40_xor0 = 0;
|
|
uint8_t u_cla46_xor40 = 0;
|
|
uint8_t u_cla46_and192 = 0;
|
|
uint8_t u_cla46_or96 = 0;
|
|
uint8_t u_cla46_pg_logic41_or0 = 0;
|
|
uint8_t u_cla46_pg_logic41_and0 = 0;
|
|
uint8_t u_cla46_pg_logic41_xor0 = 0;
|
|
uint8_t u_cla46_xor41 = 0;
|
|
uint8_t u_cla46_and193 = 0;
|
|
uint8_t u_cla46_and194 = 0;
|
|
uint8_t u_cla46_and195 = 0;
|
|
uint8_t u_cla46_or97 = 0;
|
|
uint8_t u_cla46_or98 = 0;
|
|
uint8_t u_cla46_pg_logic42_or0 = 0;
|
|
uint8_t u_cla46_pg_logic42_and0 = 0;
|
|
uint8_t u_cla46_pg_logic42_xor0 = 0;
|
|
uint8_t u_cla46_xor42 = 0;
|
|
uint8_t u_cla46_and196 = 0;
|
|
uint8_t u_cla46_and197 = 0;
|
|
uint8_t u_cla46_and198 = 0;
|
|
uint8_t u_cla46_and199 = 0;
|
|
uint8_t u_cla46_and200 = 0;
|
|
uint8_t u_cla46_and201 = 0;
|
|
uint8_t u_cla46_or99 = 0;
|
|
uint8_t u_cla46_or100 = 0;
|
|
uint8_t u_cla46_or101 = 0;
|
|
uint8_t u_cla46_pg_logic43_or0 = 0;
|
|
uint8_t u_cla46_pg_logic43_and0 = 0;
|
|
uint8_t u_cla46_pg_logic43_xor0 = 0;
|
|
uint8_t u_cla46_xor43 = 0;
|
|
uint8_t u_cla46_and202 = 0;
|
|
uint8_t u_cla46_and203 = 0;
|
|
uint8_t u_cla46_and204 = 0;
|
|
uint8_t u_cla46_and205 = 0;
|
|
uint8_t u_cla46_and206 = 0;
|
|
uint8_t u_cla46_and207 = 0;
|
|
uint8_t u_cla46_and208 = 0;
|
|
uint8_t u_cla46_and209 = 0;
|
|
uint8_t u_cla46_and210 = 0;
|
|
uint8_t u_cla46_and211 = 0;
|
|
uint8_t u_cla46_or102 = 0;
|
|
uint8_t u_cla46_or103 = 0;
|
|
uint8_t u_cla46_or104 = 0;
|
|
uint8_t u_cla46_or105 = 0;
|
|
uint8_t u_cla46_pg_logic44_or0 = 0;
|
|
uint8_t u_cla46_pg_logic44_and0 = 0;
|
|
uint8_t u_cla46_pg_logic44_xor0 = 0;
|
|
uint8_t u_cla46_xor44 = 0;
|
|
uint8_t u_cla46_and212 = 0;
|
|
uint8_t u_cla46_or106 = 0;
|
|
uint8_t u_cla46_pg_logic45_or0 = 0;
|
|
uint8_t u_cla46_pg_logic45_and0 = 0;
|
|
uint8_t u_cla46_pg_logic45_xor0 = 0;
|
|
uint8_t u_cla46_xor45 = 0;
|
|
uint8_t u_cla46_and213 = 0;
|
|
uint8_t u_cla46_and214 = 0;
|
|
uint8_t u_cla46_and215 = 0;
|
|
uint8_t u_cla46_or107 = 0;
|
|
uint8_t u_cla46_or108 = 0;
|
|
|
|
u_cla46_pg_logic0_or0 = (pg_logic(((a >> 0) & 0x01), ((b >> 0) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic0_and0 = (pg_logic(((a >> 0) & 0x01), ((b >> 0) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic0_xor0 = (pg_logic(((a >> 0) & 0x01), ((b >> 0) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_pg_logic1_or0 = (pg_logic(((a >> 1) & 0x01), ((b >> 1) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic1_and0 = (pg_logic(((a >> 1) & 0x01), ((b >> 1) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic1_xor0 = (pg_logic(((a >> 1) & 0x01), ((b >> 1) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor1 = xor_gate(((u_cla46_pg_logic1_xor0 >> 0) & 0x01), ((u_cla46_pg_logic0_and0 >> 0) & 0x01));
|
|
u_cla46_and0 = and_gate(((u_cla46_pg_logic0_and0 >> 0) & 0x01), ((u_cla46_pg_logic1_or0 >> 0) & 0x01));
|
|
u_cla46_or0 = or_gate(((u_cla46_pg_logic1_and0 >> 0) & 0x01), ((u_cla46_and0 >> 0) & 0x01));
|
|
u_cla46_pg_logic2_or0 = (pg_logic(((a >> 2) & 0x01), ((b >> 2) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic2_and0 = (pg_logic(((a >> 2) & 0x01), ((b >> 2) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic2_xor0 = (pg_logic(((a >> 2) & 0x01), ((b >> 2) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor2 = xor_gate(((u_cla46_pg_logic2_xor0 >> 0) & 0x01), ((u_cla46_or0 >> 0) & 0x01));
|
|
u_cla46_and1 = and_gate(((u_cla46_pg_logic2_or0 >> 0) & 0x01), ((u_cla46_pg_logic0_or0 >> 0) & 0x01));
|
|
u_cla46_and2 = and_gate(((u_cla46_pg_logic0_and0 >> 0) & 0x01), ((u_cla46_pg_logic2_or0 >> 0) & 0x01));
|
|
u_cla46_and3 = and_gate(((u_cla46_and2 >> 0) & 0x01), ((u_cla46_pg_logic1_or0 >> 0) & 0x01));
|
|
u_cla46_and4 = and_gate(((u_cla46_pg_logic1_and0 >> 0) & 0x01), ((u_cla46_pg_logic2_or0 >> 0) & 0x01));
|
|
u_cla46_or1 = or_gate(((u_cla46_and3 >> 0) & 0x01), ((u_cla46_and4 >> 0) & 0x01));
|
|
u_cla46_or2 = or_gate(((u_cla46_pg_logic2_and0 >> 0) & 0x01), ((u_cla46_or1 >> 0) & 0x01));
|
|
u_cla46_pg_logic3_or0 = (pg_logic(((a >> 3) & 0x01), ((b >> 3) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic3_and0 = (pg_logic(((a >> 3) & 0x01), ((b >> 3) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic3_xor0 = (pg_logic(((a >> 3) & 0x01), ((b >> 3) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor3 = xor_gate(((u_cla46_pg_logic3_xor0 >> 0) & 0x01), ((u_cla46_or2 >> 0) & 0x01));
|
|
u_cla46_and5 = and_gate(((u_cla46_pg_logic3_or0 >> 0) & 0x01), ((u_cla46_pg_logic1_or0 >> 0) & 0x01));
|
|
u_cla46_and6 = and_gate(((u_cla46_pg_logic0_and0 >> 0) & 0x01), ((u_cla46_pg_logic2_or0 >> 0) & 0x01));
|
|
u_cla46_and7 = and_gate(((u_cla46_pg_logic3_or0 >> 0) & 0x01), ((u_cla46_pg_logic1_or0 >> 0) & 0x01));
|
|
u_cla46_and8 = and_gate(((u_cla46_and6 >> 0) & 0x01), ((u_cla46_and7 >> 0) & 0x01));
|
|
u_cla46_and9 = and_gate(((u_cla46_pg_logic1_and0 >> 0) & 0x01), ((u_cla46_pg_logic3_or0 >> 0) & 0x01));
|
|
u_cla46_and10 = and_gate(((u_cla46_and9 >> 0) & 0x01), ((u_cla46_pg_logic2_or0 >> 0) & 0x01));
|
|
u_cla46_and11 = and_gate(((u_cla46_pg_logic2_and0 >> 0) & 0x01), ((u_cla46_pg_logic3_or0 >> 0) & 0x01));
|
|
u_cla46_or3 = or_gate(((u_cla46_and8 >> 0) & 0x01), ((u_cla46_and11 >> 0) & 0x01));
|
|
u_cla46_or4 = or_gate(((u_cla46_and10 >> 0) & 0x01), ((u_cla46_or3 >> 0) & 0x01));
|
|
u_cla46_or5 = or_gate(((u_cla46_pg_logic3_and0 >> 0) & 0x01), ((u_cla46_or4 >> 0) & 0x01));
|
|
u_cla46_pg_logic4_or0 = (pg_logic(((a >> 4) & 0x01), ((b >> 4) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic4_and0 = (pg_logic(((a >> 4) & 0x01), ((b >> 4) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic4_xor0 = (pg_logic(((a >> 4) & 0x01), ((b >> 4) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor4 = xor_gate(((u_cla46_pg_logic4_xor0 >> 0) & 0x01), ((u_cla46_or5 >> 0) & 0x01));
|
|
u_cla46_and12 = and_gate(((u_cla46_or5 >> 0) & 0x01), ((u_cla46_pg_logic4_or0 >> 0) & 0x01));
|
|
u_cla46_or6 = or_gate(((u_cla46_pg_logic4_and0 >> 0) & 0x01), ((u_cla46_and12 >> 0) & 0x01));
|
|
u_cla46_pg_logic5_or0 = (pg_logic(((a >> 5) & 0x01), ((b >> 5) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic5_and0 = (pg_logic(((a >> 5) & 0x01), ((b >> 5) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic5_xor0 = (pg_logic(((a >> 5) & 0x01), ((b >> 5) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor5 = xor_gate(((u_cla46_pg_logic5_xor0 >> 0) & 0x01), ((u_cla46_or6 >> 0) & 0x01));
|
|
u_cla46_and13 = and_gate(((u_cla46_or5 >> 0) & 0x01), ((u_cla46_pg_logic5_or0 >> 0) & 0x01));
|
|
u_cla46_and14 = and_gate(((u_cla46_and13 >> 0) & 0x01), ((u_cla46_pg_logic4_or0 >> 0) & 0x01));
|
|
u_cla46_and15 = and_gate(((u_cla46_pg_logic4_and0 >> 0) & 0x01), ((u_cla46_pg_logic5_or0 >> 0) & 0x01));
|
|
u_cla46_or7 = or_gate(((u_cla46_and14 >> 0) & 0x01), ((u_cla46_and15 >> 0) & 0x01));
|
|
u_cla46_or8 = or_gate(((u_cla46_pg_logic5_and0 >> 0) & 0x01), ((u_cla46_or7 >> 0) & 0x01));
|
|
u_cla46_pg_logic6_or0 = (pg_logic(((a >> 6) & 0x01), ((b >> 6) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic6_and0 = (pg_logic(((a >> 6) & 0x01), ((b >> 6) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic6_xor0 = (pg_logic(((a >> 6) & 0x01), ((b >> 6) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor6 = xor_gate(((u_cla46_pg_logic6_xor0 >> 0) & 0x01), ((u_cla46_or8 >> 0) & 0x01));
|
|
u_cla46_and16 = and_gate(((u_cla46_or5 >> 0) & 0x01), ((u_cla46_pg_logic5_or0 >> 0) & 0x01));
|
|
u_cla46_and17 = and_gate(((u_cla46_pg_logic6_or0 >> 0) & 0x01), ((u_cla46_pg_logic4_or0 >> 0) & 0x01));
|
|
u_cla46_and18 = and_gate(((u_cla46_and16 >> 0) & 0x01), ((u_cla46_and17 >> 0) & 0x01));
|
|
u_cla46_and19 = and_gate(((u_cla46_pg_logic4_and0 >> 0) & 0x01), ((u_cla46_pg_logic6_or0 >> 0) & 0x01));
|
|
u_cla46_and20 = and_gate(((u_cla46_and19 >> 0) & 0x01), ((u_cla46_pg_logic5_or0 >> 0) & 0x01));
|
|
u_cla46_and21 = and_gate(((u_cla46_pg_logic5_and0 >> 0) & 0x01), ((u_cla46_pg_logic6_or0 >> 0) & 0x01));
|
|
u_cla46_or9 = or_gate(((u_cla46_and18 >> 0) & 0x01), ((u_cla46_and20 >> 0) & 0x01));
|
|
u_cla46_or10 = or_gate(((u_cla46_or9 >> 0) & 0x01), ((u_cla46_and21 >> 0) & 0x01));
|
|
u_cla46_or11 = or_gate(((u_cla46_pg_logic6_and0 >> 0) & 0x01), ((u_cla46_or10 >> 0) & 0x01));
|
|
u_cla46_pg_logic7_or0 = (pg_logic(((a >> 7) & 0x01), ((b >> 7) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic7_and0 = (pg_logic(((a >> 7) & 0x01), ((b >> 7) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic7_xor0 = (pg_logic(((a >> 7) & 0x01), ((b >> 7) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor7 = xor_gate(((u_cla46_pg_logic7_xor0 >> 0) & 0x01), ((u_cla46_or11 >> 0) & 0x01));
|
|
u_cla46_and22 = and_gate(((u_cla46_or5 >> 0) & 0x01), ((u_cla46_pg_logic6_or0 >> 0) & 0x01));
|
|
u_cla46_and23 = and_gate(((u_cla46_pg_logic7_or0 >> 0) & 0x01), ((u_cla46_pg_logic5_or0 >> 0) & 0x01));
|
|
u_cla46_and24 = and_gate(((u_cla46_and22 >> 0) & 0x01), ((u_cla46_and23 >> 0) & 0x01));
|
|
u_cla46_and25 = and_gate(((u_cla46_and24 >> 0) & 0x01), ((u_cla46_pg_logic4_or0 >> 0) & 0x01));
|
|
u_cla46_and26 = and_gate(((u_cla46_pg_logic4_and0 >> 0) & 0x01), ((u_cla46_pg_logic6_or0 >> 0) & 0x01));
|
|
u_cla46_and27 = and_gate(((u_cla46_pg_logic7_or0 >> 0) & 0x01), ((u_cla46_pg_logic5_or0 >> 0) & 0x01));
|
|
u_cla46_and28 = and_gate(((u_cla46_and26 >> 0) & 0x01), ((u_cla46_and27 >> 0) & 0x01));
|
|
u_cla46_and29 = and_gate(((u_cla46_pg_logic5_and0 >> 0) & 0x01), ((u_cla46_pg_logic7_or0 >> 0) & 0x01));
|
|
u_cla46_and30 = and_gate(((u_cla46_and29 >> 0) & 0x01), ((u_cla46_pg_logic6_or0 >> 0) & 0x01));
|
|
u_cla46_and31 = and_gate(((u_cla46_pg_logic6_and0 >> 0) & 0x01), ((u_cla46_pg_logic7_or0 >> 0) & 0x01));
|
|
u_cla46_or12 = or_gate(((u_cla46_and25 >> 0) & 0x01), ((u_cla46_and30 >> 0) & 0x01));
|
|
u_cla46_or13 = or_gate(((u_cla46_and28 >> 0) & 0x01), ((u_cla46_and31 >> 0) & 0x01));
|
|
u_cla46_or14 = or_gate(((u_cla46_or12 >> 0) & 0x01), ((u_cla46_or13 >> 0) & 0x01));
|
|
u_cla46_or15 = or_gate(((u_cla46_pg_logic7_and0 >> 0) & 0x01), ((u_cla46_or14 >> 0) & 0x01));
|
|
u_cla46_pg_logic8_or0 = (pg_logic(((a >> 8) & 0x01), ((b >> 8) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic8_and0 = (pg_logic(((a >> 8) & 0x01), ((b >> 8) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic8_xor0 = (pg_logic(((a >> 8) & 0x01), ((b >> 8) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor8 = xor_gate(((u_cla46_pg_logic8_xor0 >> 0) & 0x01), ((u_cla46_or15 >> 0) & 0x01));
|
|
u_cla46_and32 = and_gate(((u_cla46_or15 >> 0) & 0x01), ((u_cla46_pg_logic8_or0 >> 0) & 0x01));
|
|
u_cla46_or16 = or_gate(((u_cla46_pg_logic8_and0 >> 0) & 0x01), ((u_cla46_and32 >> 0) & 0x01));
|
|
u_cla46_pg_logic9_or0 = (pg_logic(((a >> 9) & 0x01), ((b >> 9) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic9_and0 = (pg_logic(((a >> 9) & 0x01), ((b >> 9) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic9_xor0 = (pg_logic(((a >> 9) & 0x01), ((b >> 9) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor9 = xor_gate(((u_cla46_pg_logic9_xor0 >> 0) & 0x01), ((u_cla46_or16 >> 0) & 0x01));
|
|
u_cla46_and33 = and_gate(((u_cla46_or15 >> 0) & 0x01), ((u_cla46_pg_logic9_or0 >> 0) & 0x01));
|
|
u_cla46_and34 = and_gate(((u_cla46_and33 >> 0) & 0x01), ((u_cla46_pg_logic8_or0 >> 0) & 0x01));
|
|
u_cla46_and35 = and_gate(((u_cla46_pg_logic8_and0 >> 0) & 0x01), ((u_cla46_pg_logic9_or0 >> 0) & 0x01));
|
|
u_cla46_or17 = or_gate(((u_cla46_and34 >> 0) & 0x01), ((u_cla46_and35 >> 0) & 0x01));
|
|
u_cla46_or18 = or_gate(((u_cla46_pg_logic9_and0 >> 0) & 0x01), ((u_cla46_or17 >> 0) & 0x01));
|
|
u_cla46_pg_logic10_or0 = (pg_logic(((a >> 10) & 0x01), ((b >> 10) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic10_and0 = (pg_logic(((a >> 10) & 0x01), ((b >> 10) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic10_xor0 = (pg_logic(((a >> 10) & 0x01), ((b >> 10) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor10 = xor_gate(((u_cla46_pg_logic10_xor0 >> 0) & 0x01), ((u_cla46_or18 >> 0) & 0x01));
|
|
u_cla46_and36 = and_gate(((u_cla46_or15 >> 0) & 0x01), ((u_cla46_pg_logic9_or0 >> 0) & 0x01));
|
|
u_cla46_and37 = and_gate(((u_cla46_pg_logic10_or0 >> 0) & 0x01), ((u_cla46_pg_logic8_or0 >> 0) & 0x01));
|
|
u_cla46_and38 = and_gate(((u_cla46_and36 >> 0) & 0x01), ((u_cla46_and37 >> 0) & 0x01));
|
|
u_cla46_and39 = and_gate(((u_cla46_pg_logic8_and0 >> 0) & 0x01), ((u_cla46_pg_logic10_or0 >> 0) & 0x01));
|
|
u_cla46_and40 = and_gate(((u_cla46_and39 >> 0) & 0x01), ((u_cla46_pg_logic9_or0 >> 0) & 0x01));
|
|
u_cla46_and41 = and_gate(((u_cla46_pg_logic9_and0 >> 0) & 0x01), ((u_cla46_pg_logic10_or0 >> 0) & 0x01));
|
|
u_cla46_or19 = or_gate(((u_cla46_and38 >> 0) & 0x01), ((u_cla46_and40 >> 0) & 0x01));
|
|
u_cla46_or20 = or_gate(((u_cla46_or19 >> 0) & 0x01), ((u_cla46_and41 >> 0) & 0x01));
|
|
u_cla46_or21 = or_gate(((u_cla46_pg_logic10_and0 >> 0) & 0x01), ((u_cla46_or20 >> 0) & 0x01));
|
|
u_cla46_pg_logic11_or0 = (pg_logic(((a >> 11) & 0x01), ((b >> 11) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic11_and0 = (pg_logic(((a >> 11) & 0x01), ((b >> 11) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic11_xor0 = (pg_logic(((a >> 11) & 0x01), ((b >> 11) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor11 = xor_gate(((u_cla46_pg_logic11_xor0 >> 0) & 0x01), ((u_cla46_or21 >> 0) & 0x01));
|
|
u_cla46_and42 = and_gate(((u_cla46_or15 >> 0) & 0x01), ((u_cla46_pg_logic10_or0 >> 0) & 0x01));
|
|
u_cla46_and43 = and_gate(((u_cla46_pg_logic11_or0 >> 0) & 0x01), ((u_cla46_pg_logic9_or0 >> 0) & 0x01));
|
|
u_cla46_and44 = and_gate(((u_cla46_and42 >> 0) & 0x01), ((u_cla46_and43 >> 0) & 0x01));
|
|
u_cla46_and45 = and_gate(((u_cla46_and44 >> 0) & 0x01), ((u_cla46_pg_logic8_or0 >> 0) & 0x01));
|
|
u_cla46_and46 = and_gate(((u_cla46_pg_logic8_and0 >> 0) & 0x01), ((u_cla46_pg_logic10_or0 >> 0) & 0x01));
|
|
u_cla46_and47 = and_gate(((u_cla46_pg_logic11_or0 >> 0) & 0x01), ((u_cla46_pg_logic9_or0 >> 0) & 0x01));
|
|
u_cla46_and48 = and_gate(((u_cla46_and46 >> 0) & 0x01), ((u_cla46_and47 >> 0) & 0x01));
|
|
u_cla46_and49 = and_gate(((u_cla46_pg_logic9_and0 >> 0) & 0x01), ((u_cla46_pg_logic11_or0 >> 0) & 0x01));
|
|
u_cla46_and50 = and_gate(((u_cla46_and49 >> 0) & 0x01), ((u_cla46_pg_logic10_or0 >> 0) & 0x01));
|
|
u_cla46_and51 = and_gate(((u_cla46_pg_logic10_and0 >> 0) & 0x01), ((u_cla46_pg_logic11_or0 >> 0) & 0x01));
|
|
u_cla46_or22 = or_gate(((u_cla46_and45 >> 0) & 0x01), ((u_cla46_and50 >> 0) & 0x01));
|
|
u_cla46_or23 = or_gate(((u_cla46_and48 >> 0) & 0x01), ((u_cla46_and51 >> 0) & 0x01));
|
|
u_cla46_or24 = or_gate(((u_cla46_or22 >> 0) & 0x01), ((u_cla46_or23 >> 0) & 0x01));
|
|
u_cla46_or25 = or_gate(((u_cla46_pg_logic11_and0 >> 0) & 0x01), ((u_cla46_or24 >> 0) & 0x01));
|
|
u_cla46_pg_logic12_or0 = (pg_logic(((a >> 12) & 0x01), ((b >> 12) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic12_and0 = (pg_logic(((a >> 12) & 0x01), ((b >> 12) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic12_xor0 = (pg_logic(((a >> 12) & 0x01), ((b >> 12) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor12 = xor_gate(((u_cla46_pg_logic12_xor0 >> 0) & 0x01), ((u_cla46_or25 >> 0) & 0x01));
|
|
u_cla46_and52 = and_gate(((u_cla46_or25 >> 0) & 0x01), ((u_cla46_pg_logic12_or0 >> 0) & 0x01));
|
|
u_cla46_or26 = or_gate(((u_cla46_pg_logic12_and0 >> 0) & 0x01), ((u_cla46_and52 >> 0) & 0x01));
|
|
u_cla46_pg_logic13_or0 = (pg_logic(((a >> 13) & 0x01), ((b >> 13) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic13_and0 = (pg_logic(((a >> 13) & 0x01), ((b >> 13) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic13_xor0 = (pg_logic(((a >> 13) & 0x01), ((b >> 13) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor13 = xor_gate(((u_cla46_pg_logic13_xor0 >> 0) & 0x01), ((u_cla46_or26 >> 0) & 0x01));
|
|
u_cla46_and53 = and_gate(((u_cla46_or25 >> 0) & 0x01), ((u_cla46_pg_logic13_or0 >> 0) & 0x01));
|
|
u_cla46_and54 = and_gate(((u_cla46_and53 >> 0) & 0x01), ((u_cla46_pg_logic12_or0 >> 0) & 0x01));
|
|
u_cla46_and55 = and_gate(((u_cla46_pg_logic12_and0 >> 0) & 0x01), ((u_cla46_pg_logic13_or0 >> 0) & 0x01));
|
|
u_cla46_or27 = or_gate(((u_cla46_and54 >> 0) & 0x01), ((u_cla46_and55 >> 0) & 0x01));
|
|
u_cla46_or28 = or_gate(((u_cla46_pg_logic13_and0 >> 0) & 0x01), ((u_cla46_or27 >> 0) & 0x01));
|
|
u_cla46_pg_logic14_or0 = (pg_logic(((a >> 14) & 0x01), ((b >> 14) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic14_and0 = (pg_logic(((a >> 14) & 0x01), ((b >> 14) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic14_xor0 = (pg_logic(((a >> 14) & 0x01), ((b >> 14) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor14 = xor_gate(((u_cla46_pg_logic14_xor0 >> 0) & 0x01), ((u_cla46_or28 >> 0) & 0x01));
|
|
u_cla46_and56 = and_gate(((u_cla46_or25 >> 0) & 0x01), ((u_cla46_pg_logic13_or0 >> 0) & 0x01));
|
|
u_cla46_and57 = and_gate(((u_cla46_pg_logic14_or0 >> 0) & 0x01), ((u_cla46_pg_logic12_or0 >> 0) & 0x01));
|
|
u_cla46_and58 = and_gate(((u_cla46_and56 >> 0) & 0x01), ((u_cla46_and57 >> 0) & 0x01));
|
|
u_cla46_and59 = and_gate(((u_cla46_pg_logic12_and0 >> 0) & 0x01), ((u_cla46_pg_logic14_or0 >> 0) & 0x01));
|
|
u_cla46_and60 = and_gate(((u_cla46_and59 >> 0) & 0x01), ((u_cla46_pg_logic13_or0 >> 0) & 0x01));
|
|
u_cla46_and61 = and_gate(((u_cla46_pg_logic13_and0 >> 0) & 0x01), ((u_cla46_pg_logic14_or0 >> 0) & 0x01));
|
|
u_cla46_or29 = or_gate(((u_cla46_and58 >> 0) & 0x01), ((u_cla46_and60 >> 0) & 0x01));
|
|
u_cla46_or30 = or_gate(((u_cla46_or29 >> 0) & 0x01), ((u_cla46_and61 >> 0) & 0x01));
|
|
u_cla46_or31 = or_gate(((u_cla46_pg_logic14_and0 >> 0) & 0x01), ((u_cla46_or30 >> 0) & 0x01));
|
|
u_cla46_pg_logic15_or0 = (pg_logic(((a >> 15) & 0x01), ((b >> 15) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic15_and0 = (pg_logic(((a >> 15) & 0x01), ((b >> 15) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic15_xor0 = (pg_logic(((a >> 15) & 0x01), ((b >> 15) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor15 = xor_gate(((u_cla46_pg_logic15_xor0 >> 0) & 0x01), ((u_cla46_or31 >> 0) & 0x01));
|
|
u_cla46_and62 = and_gate(((u_cla46_or25 >> 0) & 0x01), ((u_cla46_pg_logic14_or0 >> 0) & 0x01));
|
|
u_cla46_and63 = and_gate(((u_cla46_pg_logic15_or0 >> 0) & 0x01), ((u_cla46_pg_logic13_or0 >> 0) & 0x01));
|
|
u_cla46_and64 = and_gate(((u_cla46_and62 >> 0) & 0x01), ((u_cla46_and63 >> 0) & 0x01));
|
|
u_cla46_and65 = and_gate(((u_cla46_and64 >> 0) & 0x01), ((u_cla46_pg_logic12_or0 >> 0) & 0x01));
|
|
u_cla46_and66 = and_gate(((u_cla46_pg_logic12_and0 >> 0) & 0x01), ((u_cla46_pg_logic14_or0 >> 0) & 0x01));
|
|
u_cla46_and67 = and_gate(((u_cla46_pg_logic15_or0 >> 0) & 0x01), ((u_cla46_pg_logic13_or0 >> 0) & 0x01));
|
|
u_cla46_and68 = and_gate(((u_cla46_and66 >> 0) & 0x01), ((u_cla46_and67 >> 0) & 0x01));
|
|
u_cla46_and69 = and_gate(((u_cla46_pg_logic13_and0 >> 0) & 0x01), ((u_cla46_pg_logic15_or0 >> 0) & 0x01));
|
|
u_cla46_and70 = and_gate(((u_cla46_and69 >> 0) & 0x01), ((u_cla46_pg_logic14_or0 >> 0) & 0x01));
|
|
u_cla46_and71 = and_gate(((u_cla46_pg_logic14_and0 >> 0) & 0x01), ((u_cla46_pg_logic15_or0 >> 0) & 0x01));
|
|
u_cla46_or32 = or_gate(((u_cla46_and65 >> 0) & 0x01), ((u_cla46_and70 >> 0) & 0x01));
|
|
u_cla46_or33 = or_gate(((u_cla46_and68 >> 0) & 0x01), ((u_cla46_and71 >> 0) & 0x01));
|
|
u_cla46_or34 = or_gate(((u_cla46_or32 >> 0) & 0x01), ((u_cla46_or33 >> 0) & 0x01));
|
|
u_cla46_or35 = or_gate(((u_cla46_pg_logic15_and0 >> 0) & 0x01), ((u_cla46_or34 >> 0) & 0x01));
|
|
u_cla46_pg_logic16_or0 = (pg_logic(((a >> 16) & 0x01), ((b >> 16) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic16_and0 = (pg_logic(((a >> 16) & 0x01), ((b >> 16) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic16_xor0 = (pg_logic(((a >> 16) & 0x01), ((b >> 16) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor16 = xor_gate(((u_cla46_pg_logic16_xor0 >> 0) & 0x01), ((u_cla46_or35 >> 0) & 0x01));
|
|
u_cla46_and72 = and_gate(((u_cla46_or35 >> 0) & 0x01), ((u_cla46_pg_logic16_or0 >> 0) & 0x01));
|
|
u_cla46_or36 = or_gate(((u_cla46_pg_logic16_and0 >> 0) & 0x01), ((u_cla46_and72 >> 0) & 0x01));
|
|
u_cla46_pg_logic17_or0 = (pg_logic(((a >> 17) & 0x01), ((b >> 17) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic17_and0 = (pg_logic(((a >> 17) & 0x01), ((b >> 17) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic17_xor0 = (pg_logic(((a >> 17) & 0x01), ((b >> 17) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor17 = xor_gate(((u_cla46_pg_logic17_xor0 >> 0) & 0x01), ((u_cla46_or36 >> 0) & 0x01));
|
|
u_cla46_and73 = and_gate(((u_cla46_or35 >> 0) & 0x01), ((u_cla46_pg_logic17_or0 >> 0) & 0x01));
|
|
u_cla46_and74 = and_gate(((u_cla46_and73 >> 0) & 0x01), ((u_cla46_pg_logic16_or0 >> 0) & 0x01));
|
|
u_cla46_and75 = and_gate(((u_cla46_pg_logic16_and0 >> 0) & 0x01), ((u_cla46_pg_logic17_or0 >> 0) & 0x01));
|
|
u_cla46_or37 = or_gate(((u_cla46_and74 >> 0) & 0x01), ((u_cla46_and75 >> 0) & 0x01));
|
|
u_cla46_or38 = or_gate(((u_cla46_pg_logic17_and0 >> 0) & 0x01), ((u_cla46_or37 >> 0) & 0x01));
|
|
u_cla46_pg_logic18_or0 = (pg_logic(((a >> 18) & 0x01), ((b >> 18) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic18_and0 = (pg_logic(((a >> 18) & 0x01), ((b >> 18) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic18_xor0 = (pg_logic(((a >> 18) & 0x01), ((b >> 18) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor18 = xor_gate(((u_cla46_pg_logic18_xor0 >> 0) & 0x01), ((u_cla46_or38 >> 0) & 0x01));
|
|
u_cla46_and76 = and_gate(((u_cla46_or35 >> 0) & 0x01), ((u_cla46_pg_logic17_or0 >> 0) & 0x01));
|
|
u_cla46_and77 = and_gate(((u_cla46_pg_logic18_or0 >> 0) & 0x01), ((u_cla46_pg_logic16_or0 >> 0) & 0x01));
|
|
u_cla46_and78 = and_gate(((u_cla46_and76 >> 0) & 0x01), ((u_cla46_and77 >> 0) & 0x01));
|
|
u_cla46_and79 = and_gate(((u_cla46_pg_logic16_and0 >> 0) & 0x01), ((u_cla46_pg_logic18_or0 >> 0) & 0x01));
|
|
u_cla46_and80 = and_gate(((u_cla46_and79 >> 0) & 0x01), ((u_cla46_pg_logic17_or0 >> 0) & 0x01));
|
|
u_cla46_and81 = and_gate(((u_cla46_pg_logic17_and0 >> 0) & 0x01), ((u_cla46_pg_logic18_or0 >> 0) & 0x01));
|
|
u_cla46_or39 = or_gate(((u_cla46_and78 >> 0) & 0x01), ((u_cla46_and80 >> 0) & 0x01));
|
|
u_cla46_or40 = or_gate(((u_cla46_or39 >> 0) & 0x01), ((u_cla46_and81 >> 0) & 0x01));
|
|
u_cla46_or41 = or_gate(((u_cla46_pg_logic18_and0 >> 0) & 0x01), ((u_cla46_or40 >> 0) & 0x01));
|
|
u_cla46_pg_logic19_or0 = (pg_logic(((a >> 19) & 0x01), ((b >> 19) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic19_and0 = (pg_logic(((a >> 19) & 0x01), ((b >> 19) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic19_xor0 = (pg_logic(((a >> 19) & 0x01), ((b >> 19) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor19 = xor_gate(((u_cla46_pg_logic19_xor0 >> 0) & 0x01), ((u_cla46_or41 >> 0) & 0x01));
|
|
u_cla46_and82 = and_gate(((u_cla46_or35 >> 0) & 0x01), ((u_cla46_pg_logic18_or0 >> 0) & 0x01));
|
|
u_cla46_and83 = and_gate(((u_cla46_pg_logic19_or0 >> 0) & 0x01), ((u_cla46_pg_logic17_or0 >> 0) & 0x01));
|
|
u_cla46_and84 = and_gate(((u_cla46_and82 >> 0) & 0x01), ((u_cla46_and83 >> 0) & 0x01));
|
|
u_cla46_and85 = and_gate(((u_cla46_and84 >> 0) & 0x01), ((u_cla46_pg_logic16_or0 >> 0) & 0x01));
|
|
u_cla46_and86 = and_gate(((u_cla46_pg_logic16_and0 >> 0) & 0x01), ((u_cla46_pg_logic18_or0 >> 0) & 0x01));
|
|
u_cla46_and87 = and_gate(((u_cla46_pg_logic19_or0 >> 0) & 0x01), ((u_cla46_pg_logic17_or0 >> 0) & 0x01));
|
|
u_cla46_and88 = and_gate(((u_cla46_and86 >> 0) & 0x01), ((u_cla46_and87 >> 0) & 0x01));
|
|
u_cla46_and89 = and_gate(((u_cla46_pg_logic17_and0 >> 0) & 0x01), ((u_cla46_pg_logic19_or0 >> 0) & 0x01));
|
|
u_cla46_and90 = and_gate(((u_cla46_and89 >> 0) & 0x01), ((u_cla46_pg_logic18_or0 >> 0) & 0x01));
|
|
u_cla46_and91 = and_gate(((u_cla46_pg_logic18_and0 >> 0) & 0x01), ((u_cla46_pg_logic19_or0 >> 0) & 0x01));
|
|
u_cla46_or42 = or_gate(((u_cla46_and85 >> 0) & 0x01), ((u_cla46_and90 >> 0) & 0x01));
|
|
u_cla46_or43 = or_gate(((u_cla46_and88 >> 0) & 0x01), ((u_cla46_and91 >> 0) & 0x01));
|
|
u_cla46_or44 = or_gate(((u_cla46_or42 >> 0) & 0x01), ((u_cla46_or43 >> 0) & 0x01));
|
|
u_cla46_or45 = or_gate(((u_cla46_pg_logic19_and0 >> 0) & 0x01), ((u_cla46_or44 >> 0) & 0x01));
|
|
u_cla46_pg_logic20_or0 = (pg_logic(((a >> 20) & 0x01), ((b >> 20) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic20_and0 = (pg_logic(((a >> 20) & 0x01), ((b >> 20) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic20_xor0 = (pg_logic(((a >> 20) & 0x01), ((b >> 20) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor20 = xor_gate(((u_cla46_pg_logic20_xor0 >> 0) & 0x01), ((u_cla46_or45 >> 0) & 0x01));
|
|
u_cla46_and92 = and_gate(((u_cla46_or45 >> 0) & 0x01), ((u_cla46_pg_logic20_or0 >> 0) & 0x01));
|
|
u_cla46_or46 = or_gate(((u_cla46_pg_logic20_and0 >> 0) & 0x01), ((u_cla46_and92 >> 0) & 0x01));
|
|
u_cla46_pg_logic21_or0 = (pg_logic(((a >> 21) & 0x01), ((b >> 21) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic21_and0 = (pg_logic(((a >> 21) & 0x01), ((b >> 21) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic21_xor0 = (pg_logic(((a >> 21) & 0x01), ((b >> 21) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor21 = xor_gate(((u_cla46_pg_logic21_xor0 >> 0) & 0x01), ((u_cla46_or46 >> 0) & 0x01));
|
|
u_cla46_and93 = and_gate(((u_cla46_or45 >> 0) & 0x01), ((u_cla46_pg_logic21_or0 >> 0) & 0x01));
|
|
u_cla46_and94 = and_gate(((u_cla46_and93 >> 0) & 0x01), ((u_cla46_pg_logic20_or0 >> 0) & 0x01));
|
|
u_cla46_and95 = and_gate(((u_cla46_pg_logic20_and0 >> 0) & 0x01), ((u_cla46_pg_logic21_or0 >> 0) & 0x01));
|
|
u_cla46_or47 = or_gate(((u_cla46_and94 >> 0) & 0x01), ((u_cla46_and95 >> 0) & 0x01));
|
|
u_cla46_or48 = or_gate(((u_cla46_pg_logic21_and0 >> 0) & 0x01), ((u_cla46_or47 >> 0) & 0x01));
|
|
u_cla46_pg_logic22_or0 = (pg_logic(((a >> 22) & 0x01), ((b >> 22) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic22_and0 = (pg_logic(((a >> 22) & 0x01), ((b >> 22) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic22_xor0 = (pg_logic(((a >> 22) & 0x01), ((b >> 22) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor22 = xor_gate(((u_cla46_pg_logic22_xor0 >> 0) & 0x01), ((u_cla46_or48 >> 0) & 0x01));
|
|
u_cla46_and96 = and_gate(((u_cla46_or45 >> 0) & 0x01), ((u_cla46_pg_logic21_or0 >> 0) & 0x01));
|
|
u_cla46_and97 = and_gate(((u_cla46_pg_logic22_or0 >> 0) & 0x01), ((u_cla46_pg_logic20_or0 >> 0) & 0x01));
|
|
u_cla46_and98 = and_gate(((u_cla46_and96 >> 0) & 0x01), ((u_cla46_and97 >> 0) & 0x01));
|
|
u_cla46_and99 = and_gate(((u_cla46_pg_logic20_and0 >> 0) & 0x01), ((u_cla46_pg_logic22_or0 >> 0) & 0x01));
|
|
u_cla46_and100 = and_gate(((u_cla46_and99 >> 0) & 0x01), ((u_cla46_pg_logic21_or0 >> 0) & 0x01));
|
|
u_cla46_and101 = and_gate(((u_cla46_pg_logic21_and0 >> 0) & 0x01), ((u_cla46_pg_logic22_or0 >> 0) & 0x01));
|
|
u_cla46_or49 = or_gate(((u_cla46_and98 >> 0) & 0x01), ((u_cla46_and100 >> 0) & 0x01));
|
|
u_cla46_or50 = or_gate(((u_cla46_or49 >> 0) & 0x01), ((u_cla46_and101 >> 0) & 0x01));
|
|
u_cla46_or51 = or_gate(((u_cla46_pg_logic22_and0 >> 0) & 0x01), ((u_cla46_or50 >> 0) & 0x01));
|
|
u_cla46_pg_logic23_or0 = (pg_logic(((a >> 23) & 0x01), ((b >> 23) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic23_and0 = (pg_logic(((a >> 23) & 0x01), ((b >> 23) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic23_xor0 = (pg_logic(((a >> 23) & 0x01), ((b >> 23) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor23 = xor_gate(((u_cla46_pg_logic23_xor0 >> 0) & 0x01), ((u_cla46_or51 >> 0) & 0x01));
|
|
u_cla46_and102 = and_gate(((u_cla46_or45 >> 0) & 0x01), ((u_cla46_pg_logic22_or0 >> 0) & 0x01));
|
|
u_cla46_and103 = and_gate(((u_cla46_pg_logic23_or0 >> 0) & 0x01), ((u_cla46_pg_logic21_or0 >> 0) & 0x01));
|
|
u_cla46_and104 = and_gate(((u_cla46_and102 >> 0) & 0x01), ((u_cla46_and103 >> 0) & 0x01));
|
|
u_cla46_and105 = and_gate(((u_cla46_and104 >> 0) & 0x01), ((u_cla46_pg_logic20_or0 >> 0) & 0x01));
|
|
u_cla46_and106 = and_gate(((u_cla46_pg_logic20_and0 >> 0) & 0x01), ((u_cla46_pg_logic22_or0 >> 0) & 0x01));
|
|
u_cla46_and107 = and_gate(((u_cla46_pg_logic23_or0 >> 0) & 0x01), ((u_cla46_pg_logic21_or0 >> 0) & 0x01));
|
|
u_cla46_and108 = and_gate(((u_cla46_and106 >> 0) & 0x01), ((u_cla46_and107 >> 0) & 0x01));
|
|
u_cla46_and109 = and_gate(((u_cla46_pg_logic21_and0 >> 0) & 0x01), ((u_cla46_pg_logic23_or0 >> 0) & 0x01));
|
|
u_cla46_and110 = and_gate(((u_cla46_and109 >> 0) & 0x01), ((u_cla46_pg_logic22_or0 >> 0) & 0x01));
|
|
u_cla46_and111 = and_gate(((u_cla46_pg_logic22_and0 >> 0) & 0x01), ((u_cla46_pg_logic23_or0 >> 0) & 0x01));
|
|
u_cla46_or52 = or_gate(((u_cla46_and105 >> 0) & 0x01), ((u_cla46_and110 >> 0) & 0x01));
|
|
u_cla46_or53 = or_gate(((u_cla46_and108 >> 0) & 0x01), ((u_cla46_and111 >> 0) & 0x01));
|
|
u_cla46_or54 = or_gate(((u_cla46_or52 >> 0) & 0x01), ((u_cla46_or53 >> 0) & 0x01));
|
|
u_cla46_or55 = or_gate(((u_cla46_pg_logic23_and0 >> 0) & 0x01), ((u_cla46_or54 >> 0) & 0x01));
|
|
u_cla46_pg_logic24_or0 = (pg_logic(((a >> 24) & 0x01), ((b >> 24) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic24_and0 = (pg_logic(((a >> 24) & 0x01), ((b >> 24) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic24_xor0 = (pg_logic(((a >> 24) & 0x01), ((b >> 24) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor24 = xor_gate(((u_cla46_pg_logic24_xor0 >> 0) & 0x01), ((u_cla46_or55 >> 0) & 0x01));
|
|
u_cla46_and112 = and_gate(((u_cla46_or55 >> 0) & 0x01), ((u_cla46_pg_logic24_or0 >> 0) & 0x01));
|
|
u_cla46_or56 = or_gate(((u_cla46_pg_logic24_and0 >> 0) & 0x01), ((u_cla46_and112 >> 0) & 0x01));
|
|
u_cla46_pg_logic25_or0 = (pg_logic(((a >> 25) & 0x01), ((b >> 25) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic25_and0 = (pg_logic(((a >> 25) & 0x01), ((b >> 25) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic25_xor0 = (pg_logic(((a >> 25) & 0x01), ((b >> 25) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor25 = xor_gate(((u_cla46_pg_logic25_xor0 >> 0) & 0x01), ((u_cla46_or56 >> 0) & 0x01));
|
|
u_cla46_and113 = and_gate(((u_cla46_or55 >> 0) & 0x01), ((u_cla46_pg_logic25_or0 >> 0) & 0x01));
|
|
u_cla46_and114 = and_gate(((u_cla46_and113 >> 0) & 0x01), ((u_cla46_pg_logic24_or0 >> 0) & 0x01));
|
|
u_cla46_and115 = and_gate(((u_cla46_pg_logic24_and0 >> 0) & 0x01), ((u_cla46_pg_logic25_or0 >> 0) & 0x01));
|
|
u_cla46_or57 = or_gate(((u_cla46_and114 >> 0) & 0x01), ((u_cla46_and115 >> 0) & 0x01));
|
|
u_cla46_or58 = or_gate(((u_cla46_pg_logic25_and0 >> 0) & 0x01), ((u_cla46_or57 >> 0) & 0x01));
|
|
u_cla46_pg_logic26_or0 = (pg_logic(((a >> 26) & 0x01), ((b >> 26) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic26_and0 = (pg_logic(((a >> 26) & 0x01), ((b >> 26) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic26_xor0 = (pg_logic(((a >> 26) & 0x01), ((b >> 26) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor26 = xor_gate(((u_cla46_pg_logic26_xor0 >> 0) & 0x01), ((u_cla46_or58 >> 0) & 0x01));
|
|
u_cla46_and116 = and_gate(((u_cla46_or55 >> 0) & 0x01), ((u_cla46_pg_logic25_or0 >> 0) & 0x01));
|
|
u_cla46_and117 = and_gate(((u_cla46_pg_logic26_or0 >> 0) & 0x01), ((u_cla46_pg_logic24_or0 >> 0) & 0x01));
|
|
u_cla46_and118 = and_gate(((u_cla46_and116 >> 0) & 0x01), ((u_cla46_and117 >> 0) & 0x01));
|
|
u_cla46_and119 = and_gate(((u_cla46_pg_logic24_and0 >> 0) & 0x01), ((u_cla46_pg_logic26_or0 >> 0) & 0x01));
|
|
u_cla46_and120 = and_gate(((u_cla46_and119 >> 0) & 0x01), ((u_cla46_pg_logic25_or0 >> 0) & 0x01));
|
|
u_cla46_and121 = and_gate(((u_cla46_pg_logic25_and0 >> 0) & 0x01), ((u_cla46_pg_logic26_or0 >> 0) & 0x01));
|
|
u_cla46_or59 = or_gate(((u_cla46_and118 >> 0) & 0x01), ((u_cla46_and120 >> 0) & 0x01));
|
|
u_cla46_or60 = or_gate(((u_cla46_or59 >> 0) & 0x01), ((u_cla46_and121 >> 0) & 0x01));
|
|
u_cla46_or61 = or_gate(((u_cla46_pg_logic26_and0 >> 0) & 0x01), ((u_cla46_or60 >> 0) & 0x01));
|
|
u_cla46_pg_logic27_or0 = (pg_logic(((a >> 27) & 0x01), ((b >> 27) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic27_and0 = (pg_logic(((a >> 27) & 0x01), ((b >> 27) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic27_xor0 = (pg_logic(((a >> 27) & 0x01), ((b >> 27) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor27 = xor_gate(((u_cla46_pg_logic27_xor0 >> 0) & 0x01), ((u_cla46_or61 >> 0) & 0x01));
|
|
u_cla46_and122 = and_gate(((u_cla46_or55 >> 0) & 0x01), ((u_cla46_pg_logic26_or0 >> 0) & 0x01));
|
|
u_cla46_and123 = and_gate(((u_cla46_pg_logic27_or0 >> 0) & 0x01), ((u_cla46_pg_logic25_or0 >> 0) & 0x01));
|
|
u_cla46_and124 = and_gate(((u_cla46_and122 >> 0) & 0x01), ((u_cla46_and123 >> 0) & 0x01));
|
|
u_cla46_and125 = and_gate(((u_cla46_and124 >> 0) & 0x01), ((u_cla46_pg_logic24_or0 >> 0) & 0x01));
|
|
u_cla46_and126 = and_gate(((u_cla46_pg_logic24_and0 >> 0) & 0x01), ((u_cla46_pg_logic26_or0 >> 0) & 0x01));
|
|
u_cla46_and127 = and_gate(((u_cla46_pg_logic27_or0 >> 0) & 0x01), ((u_cla46_pg_logic25_or0 >> 0) & 0x01));
|
|
u_cla46_and128 = and_gate(((u_cla46_and126 >> 0) & 0x01), ((u_cla46_and127 >> 0) & 0x01));
|
|
u_cla46_and129 = and_gate(((u_cla46_pg_logic25_and0 >> 0) & 0x01), ((u_cla46_pg_logic27_or0 >> 0) & 0x01));
|
|
u_cla46_and130 = and_gate(((u_cla46_and129 >> 0) & 0x01), ((u_cla46_pg_logic26_or0 >> 0) & 0x01));
|
|
u_cla46_and131 = and_gate(((u_cla46_pg_logic26_and0 >> 0) & 0x01), ((u_cla46_pg_logic27_or0 >> 0) & 0x01));
|
|
u_cla46_or62 = or_gate(((u_cla46_and125 >> 0) & 0x01), ((u_cla46_and130 >> 0) & 0x01));
|
|
u_cla46_or63 = or_gate(((u_cla46_and128 >> 0) & 0x01), ((u_cla46_and131 >> 0) & 0x01));
|
|
u_cla46_or64 = or_gate(((u_cla46_or62 >> 0) & 0x01), ((u_cla46_or63 >> 0) & 0x01));
|
|
u_cla46_or65 = or_gate(((u_cla46_pg_logic27_and0 >> 0) & 0x01), ((u_cla46_or64 >> 0) & 0x01));
|
|
u_cla46_pg_logic28_or0 = (pg_logic(((a >> 28) & 0x01), ((b >> 28) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic28_and0 = (pg_logic(((a >> 28) & 0x01), ((b >> 28) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic28_xor0 = (pg_logic(((a >> 28) & 0x01), ((b >> 28) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor28 = xor_gate(((u_cla46_pg_logic28_xor0 >> 0) & 0x01), ((u_cla46_or65 >> 0) & 0x01));
|
|
u_cla46_and132 = and_gate(((u_cla46_or65 >> 0) & 0x01), ((u_cla46_pg_logic28_or0 >> 0) & 0x01));
|
|
u_cla46_or66 = or_gate(((u_cla46_pg_logic28_and0 >> 0) & 0x01), ((u_cla46_and132 >> 0) & 0x01));
|
|
u_cla46_pg_logic29_or0 = (pg_logic(((a >> 29) & 0x01), ((b >> 29) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic29_and0 = (pg_logic(((a >> 29) & 0x01), ((b >> 29) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic29_xor0 = (pg_logic(((a >> 29) & 0x01), ((b >> 29) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor29 = xor_gate(((u_cla46_pg_logic29_xor0 >> 0) & 0x01), ((u_cla46_or66 >> 0) & 0x01));
|
|
u_cla46_and133 = and_gate(((u_cla46_or65 >> 0) & 0x01), ((u_cla46_pg_logic29_or0 >> 0) & 0x01));
|
|
u_cla46_and134 = and_gate(((u_cla46_and133 >> 0) & 0x01), ((u_cla46_pg_logic28_or0 >> 0) & 0x01));
|
|
u_cla46_and135 = and_gate(((u_cla46_pg_logic28_and0 >> 0) & 0x01), ((u_cla46_pg_logic29_or0 >> 0) & 0x01));
|
|
u_cla46_or67 = or_gate(((u_cla46_and134 >> 0) & 0x01), ((u_cla46_and135 >> 0) & 0x01));
|
|
u_cla46_or68 = or_gate(((u_cla46_pg_logic29_and0 >> 0) & 0x01), ((u_cla46_or67 >> 0) & 0x01));
|
|
u_cla46_pg_logic30_or0 = (pg_logic(((a >> 30) & 0x01), ((b >> 30) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic30_and0 = (pg_logic(((a >> 30) & 0x01), ((b >> 30) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic30_xor0 = (pg_logic(((a >> 30) & 0x01), ((b >> 30) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor30 = xor_gate(((u_cla46_pg_logic30_xor0 >> 0) & 0x01), ((u_cla46_or68 >> 0) & 0x01));
|
|
u_cla46_and136 = and_gate(((u_cla46_or65 >> 0) & 0x01), ((u_cla46_pg_logic29_or0 >> 0) & 0x01));
|
|
u_cla46_and137 = and_gate(((u_cla46_pg_logic30_or0 >> 0) & 0x01), ((u_cla46_pg_logic28_or0 >> 0) & 0x01));
|
|
u_cla46_and138 = and_gate(((u_cla46_and136 >> 0) & 0x01), ((u_cla46_and137 >> 0) & 0x01));
|
|
u_cla46_and139 = and_gate(((u_cla46_pg_logic28_and0 >> 0) & 0x01), ((u_cla46_pg_logic30_or0 >> 0) & 0x01));
|
|
u_cla46_and140 = and_gate(((u_cla46_and139 >> 0) & 0x01), ((u_cla46_pg_logic29_or0 >> 0) & 0x01));
|
|
u_cla46_and141 = and_gate(((u_cla46_pg_logic29_and0 >> 0) & 0x01), ((u_cla46_pg_logic30_or0 >> 0) & 0x01));
|
|
u_cla46_or69 = or_gate(((u_cla46_and138 >> 0) & 0x01), ((u_cla46_and140 >> 0) & 0x01));
|
|
u_cla46_or70 = or_gate(((u_cla46_or69 >> 0) & 0x01), ((u_cla46_and141 >> 0) & 0x01));
|
|
u_cla46_or71 = or_gate(((u_cla46_pg_logic30_and0 >> 0) & 0x01), ((u_cla46_or70 >> 0) & 0x01));
|
|
u_cla46_pg_logic31_or0 = (pg_logic(((a >> 31) & 0x01), ((b >> 31) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic31_and0 = (pg_logic(((a >> 31) & 0x01), ((b >> 31) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic31_xor0 = (pg_logic(((a >> 31) & 0x01), ((b >> 31) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor31 = xor_gate(((u_cla46_pg_logic31_xor0 >> 0) & 0x01), ((u_cla46_or71 >> 0) & 0x01));
|
|
u_cla46_and142 = and_gate(((u_cla46_or65 >> 0) & 0x01), ((u_cla46_pg_logic30_or0 >> 0) & 0x01));
|
|
u_cla46_and143 = and_gate(((u_cla46_pg_logic31_or0 >> 0) & 0x01), ((u_cla46_pg_logic29_or0 >> 0) & 0x01));
|
|
u_cla46_and144 = and_gate(((u_cla46_and142 >> 0) & 0x01), ((u_cla46_and143 >> 0) & 0x01));
|
|
u_cla46_and145 = and_gate(((u_cla46_and144 >> 0) & 0x01), ((u_cla46_pg_logic28_or0 >> 0) & 0x01));
|
|
u_cla46_and146 = and_gate(((u_cla46_pg_logic28_and0 >> 0) & 0x01), ((u_cla46_pg_logic30_or0 >> 0) & 0x01));
|
|
u_cla46_and147 = and_gate(((u_cla46_pg_logic31_or0 >> 0) & 0x01), ((u_cla46_pg_logic29_or0 >> 0) & 0x01));
|
|
u_cla46_and148 = and_gate(((u_cla46_and146 >> 0) & 0x01), ((u_cla46_and147 >> 0) & 0x01));
|
|
u_cla46_and149 = and_gate(((u_cla46_pg_logic29_and0 >> 0) & 0x01), ((u_cla46_pg_logic31_or0 >> 0) & 0x01));
|
|
u_cla46_and150 = and_gate(((u_cla46_and149 >> 0) & 0x01), ((u_cla46_pg_logic30_or0 >> 0) & 0x01));
|
|
u_cla46_and151 = and_gate(((u_cla46_pg_logic30_and0 >> 0) & 0x01), ((u_cla46_pg_logic31_or0 >> 0) & 0x01));
|
|
u_cla46_or72 = or_gate(((u_cla46_and145 >> 0) & 0x01), ((u_cla46_and150 >> 0) & 0x01));
|
|
u_cla46_or73 = or_gate(((u_cla46_and148 >> 0) & 0x01), ((u_cla46_and151 >> 0) & 0x01));
|
|
u_cla46_or74 = or_gate(((u_cla46_or72 >> 0) & 0x01), ((u_cla46_or73 >> 0) & 0x01));
|
|
u_cla46_or75 = or_gate(((u_cla46_pg_logic31_and0 >> 0) & 0x01), ((u_cla46_or74 >> 0) & 0x01));
|
|
u_cla46_pg_logic32_or0 = (pg_logic(((a >> 32) & 0x01), ((b >> 32) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic32_and0 = (pg_logic(((a >> 32) & 0x01), ((b >> 32) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic32_xor0 = (pg_logic(((a >> 32) & 0x01), ((b >> 32) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor32 = xor_gate(((u_cla46_pg_logic32_xor0 >> 0) & 0x01), ((u_cla46_or75 >> 0) & 0x01));
|
|
u_cla46_and152 = and_gate(((u_cla46_or75 >> 0) & 0x01), ((u_cla46_pg_logic32_or0 >> 0) & 0x01));
|
|
u_cla46_or76 = or_gate(((u_cla46_pg_logic32_and0 >> 0) & 0x01), ((u_cla46_and152 >> 0) & 0x01));
|
|
u_cla46_pg_logic33_or0 = (pg_logic(((a >> 33) & 0x01), ((b >> 33) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic33_and0 = (pg_logic(((a >> 33) & 0x01), ((b >> 33) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic33_xor0 = (pg_logic(((a >> 33) & 0x01), ((b >> 33) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor33 = xor_gate(((u_cla46_pg_logic33_xor0 >> 0) & 0x01), ((u_cla46_or76 >> 0) & 0x01));
|
|
u_cla46_and153 = and_gate(((u_cla46_or75 >> 0) & 0x01), ((u_cla46_pg_logic33_or0 >> 0) & 0x01));
|
|
u_cla46_and154 = and_gate(((u_cla46_and153 >> 0) & 0x01), ((u_cla46_pg_logic32_or0 >> 0) & 0x01));
|
|
u_cla46_and155 = and_gate(((u_cla46_pg_logic32_and0 >> 0) & 0x01), ((u_cla46_pg_logic33_or0 >> 0) & 0x01));
|
|
u_cla46_or77 = or_gate(((u_cla46_and154 >> 0) & 0x01), ((u_cla46_and155 >> 0) & 0x01));
|
|
u_cla46_or78 = or_gate(((u_cla46_pg_logic33_and0 >> 0) & 0x01), ((u_cla46_or77 >> 0) & 0x01));
|
|
u_cla46_pg_logic34_or0 = (pg_logic(((a >> 34) & 0x01), ((b >> 34) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic34_and0 = (pg_logic(((a >> 34) & 0x01), ((b >> 34) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic34_xor0 = (pg_logic(((a >> 34) & 0x01), ((b >> 34) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor34 = xor_gate(((u_cla46_pg_logic34_xor0 >> 0) & 0x01), ((u_cla46_or78 >> 0) & 0x01));
|
|
u_cla46_and156 = and_gate(((u_cla46_or75 >> 0) & 0x01), ((u_cla46_pg_logic33_or0 >> 0) & 0x01));
|
|
u_cla46_and157 = and_gate(((u_cla46_pg_logic34_or0 >> 0) & 0x01), ((u_cla46_pg_logic32_or0 >> 0) & 0x01));
|
|
u_cla46_and158 = and_gate(((u_cla46_and156 >> 0) & 0x01), ((u_cla46_and157 >> 0) & 0x01));
|
|
u_cla46_and159 = and_gate(((u_cla46_pg_logic32_and0 >> 0) & 0x01), ((u_cla46_pg_logic34_or0 >> 0) & 0x01));
|
|
u_cla46_and160 = and_gate(((u_cla46_and159 >> 0) & 0x01), ((u_cla46_pg_logic33_or0 >> 0) & 0x01));
|
|
u_cla46_and161 = and_gate(((u_cla46_pg_logic33_and0 >> 0) & 0x01), ((u_cla46_pg_logic34_or0 >> 0) & 0x01));
|
|
u_cla46_or79 = or_gate(((u_cla46_and158 >> 0) & 0x01), ((u_cla46_and160 >> 0) & 0x01));
|
|
u_cla46_or80 = or_gate(((u_cla46_or79 >> 0) & 0x01), ((u_cla46_and161 >> 0) & 0x01));
|
|
u_cla46_or81 = or_gate(((u_cla46_pg_logic34_and0 >> 0) & 0x01), ((u_cla46_or80 >> 0) & 0x01));
|
|
u_cla46_pg_logic35_or0 = (pg_logic(((a >> 35) & 0x01), ((b >> 35) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic35_and0 = (pg_logic(((a >> 35) & 0x01), ((b >> 35) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic35_xor0 = (pg_logic(((a >> 35) & 0x01), ((b >> 35) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor35 = xor_gate(((u_cla46_pg_logic35_xor0 >> 0) & 0x01), ((u_cla46_or81 >> 0) & 0x01));
|
|
u_cla46_and162 = and_gate(((u_cla46_or75 >> 0) & 0x01), ((u_cla46_pg_logic34_or0 >> 0) & 0x01));
|
|
u_cla46_and163 = and_gate(((u_cla46_pg_logic35_or0 >> 0) & 0x01), ((u_cla46_pg_logic33_or0 >> 0) & 0x01));
|
|
u_cla46_and164 = and_gate(((u_cla46_and162 >> 0) & 0x01), ((u_cla46_and163 >> 0) & 0x01));
|
|
u_cla46_and165 = and_gate(((u_cla46_and164 >> 0) & 0x01), ((u_cla46_pg_logic32_or0 >> 0) & 0x01));
|
|
u_cla46_and166 = and_gate(((u_cla46_pg_logic32_and0 >> 0) & 0x01), ((u_cla46_pg_logic34_or0 >> 0) & 0x01));
|
|
u_cla46_and167 = and_gate(((u_cla46_pg_logic35_or0 >> 0) & 0x01), ((u_cla46_pg_logic33_or0 >> 0) & 0x01));
|
|
u_cla46_and168 = and_gate(((u_cla46_and166 >> 0) & 0x01), ((u_cla46_and167 >> 0) & 0x01));
|
|
u_cla46_and169 = and_gate(((u_cla46_pg_logic33_and0 >> 0) & 0x01), ((u_cla46_pg_logic35_or0 >> 0) & 0x01));
|
|
u_cla46_and170 = and_gate(((u_cla46_and169 >> 0) & 0x01), ((u_cla46_pg_logic34_or0 >> 0) & 0x01));
|
|
u_cla46_and171 = and_gate(((u_cla46_pg_logic34_and0 >> 0) & 0x01), ((u_cla46_pg_logic35_or0 >> 0) & 0x01));
|
|
u_cla46_or82 = or_gate(((u_cla46_and165 >> 0) & 0x01), ((u_cla46_and170 >> 0) & 0x01));
|
|
u_cla46_or83 = or_gate(((u_cla46_and168 >> 0) & 0x01), ((u_cla46_and171 >> 0) & 0x01));
|
|
u_cla46_or84 = or_gate(((u_cla46_or82 >> 0) & 0x01), ((u_cla46_or83 >> 0) & 0x01));
|
|
u_cla46_or85 = or_gate(((u_cla46_pg_logic35_and0 >> 0) & 0x01), ((u_cla46_or84 >> 0) & 0x01));
|
|
u_cla46_pg_logic36_or0 = (pg_logic(((a >> 36) & 0x01), ((b >> 36) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic36_and0 = (pg_logic(((a >> 36) & 0x01), ((b >> 36) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic36_xor0 = (pg_logic(((a >> 36) & 0x01), ((b >> 36) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor36 = xor_gate(((u_cla46_pg_logic36_xor0 >> 0) & 0x01), ((u_cla46_or85 >> 0) & 0x01));
|
|
u_cla46_and172 = and_gate(((u_cla46_or85 >> 0) & 0x01), ((u_cla46_pg_logic36_or0 >> 0) & 0x01));
|
|
u_cla46_or86 = or_gate(((u_cla46_pg_logic36_and0 >> 0) & 0x01), ((u_cla46_and172 >> 0) & 0x01));
|
|
u_cla46_pg_logic37_or0 = (pg_logic(((a >> 37) & 0x01), ((b >> 37) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic37_and0 = (pg_logic(((a >> 37) & 0x01), ((b >> 37) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic37_xor0 = (pg_logic(((a >> 37) & 0x01), ((b >> 37) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor37 = xor_gate(((u_cla46_pg_logic37_xor0 >> 0) & 0x01), ((u_cla46_or86 >> 0) & 0x01));
|
|
u_cla46_and173 = and_gate(((u_cla46_or85 >> 0) & 0x01), ((u_cla46_pg_logic37_or0 >> 0) & 0x01));
|
|
u_cla46_and174 = and_gate(((u_cla46_and173 >> 0) & 0x01), ((u_cla46_pg_logic36_or0 >> 0) & 0x01));
|
|
u_cla46_and175 = and_gate(((u_cla46_pg_logic36_and0 >> 0) & 0x01), ((u_cla46_pg_logic37_or0 >> 0) & 0x01));
|
|
u_cla46_or87 = or_gate(((u_cla46_and174 >> 0) & 0x01), ((u_cla46_and175 >> 0) & 0x01));
|
|
u_cla46_or88 = or_gate(((u_cla46_pg_logic37_and0 >> 0) & 0x01), ((u_cla46_or87 >> 0) & 0x01));
|
|
u_cla46_pg_logic38_or0 = (pg_logic(((a >> 38) & 0x01), ((b >> 38) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic38_and0 = (pg_logic(((a >> 38) & 0x01), ((b >> 38) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic38_xor0 = (pg_logic(((a >> 38) & 0x01), ((b >> 38) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor38 = xor_gate(((u_cla46_pg_logic38_xor0 >> 0) & 0x01), ((u_cla46_or88 >> 0) & 0x01));
|
|
u_cla46_and176 = and_gate(((u_cla46_or85 >> 0) & 0x01), ((u_cla46_pg_logic37_or0 >> 0) & 0x01));
|
|
u_cla46_and177 = and_gate(((u_cla46_pg_logic38_or0 >> 0) & 0x01), ((u_cla46_pg_logic36_or0 >> 0) & 0x01));
|
|
u_cla46_and178 = and_gate(((u_cla46_and176 >> 0) & 0x01), ((u_cla46_and177 >> 0) & 0x01));
|
|
u_cla46_and179 = and_gate(((u_cla46_pg_logic36_and0 >> 0) & 0x01), ((u_cla46_pg_logic38_or0 >> 0) & 0x01));
|
|
u_cla46_and180 = and_gate(((u_cla46_and179 >> 0) & 0x01), ((u_cla46_pg_logic37_or0 >> 0) & 0x01));
|
|
u_cla46_and181 = and_gate(((u_cla46_pg_logic37_and0 >> 0) & 0x01), ((u_cla46_pg_logic38_or0 >> 0) & 0x01));
|
|
u_cla46_or89 = or_gate(((u_cla46_and178 >> 0) & 0x01), ((u_cla46_and180 >> 0) & 0x01));
|
|
u_cla46_or90 = or_gate(((u_cla46_or89 >> 0) & 0x01), ((u_cla46_and181 >> 0) & 0x01));
|
|
u_cla46_or91 = or_gate(((u_cla46_pg_logic38_and0 >> 0) & 0x01), ((u_cla46_or90 >> 0) & 0x01));
|
|
u_cla46_pg_logic39_or0 = (pg_logic(((a >> 39) & 0x01), ((b >> 39) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic39_and0 = (pg_logic(((a >> 39) & 0x01), ((b >> 39) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic39_xor0 = (pg_logic(((a >> 39) & 0x01), ((b >> 39) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor39 = xor_gate(((u_cla46_pg_logic39_xor0 >> 0) & 0x01), ((u_cla46_or91 >> 0) & 0x01));
|
|
u_cla46_and182 = and_gate(((u_cla46_or85 >> 0) & 0x01), ((u_cla46_pg_logic38_or0 >> 0) & 0x01));
|
|
u_cla46_and183 = and_gate(((u_cla46_pg_logic39_or0 >> 0) & 0x01), ((u_cla46_pg_logic37_or0 >> 0) & 0x01));
|
|
u_cla46_and184 = and_gate(((u_cla46_and182 >> 0) & 0x01), ((u_cla46_and183 >> 0) & 0x01));
|
|
u_cla46_and185 = and_gate(((u_cla46_and184 >> 0) & 0x01), ((u_cla46_pg_logic36_or0 >> 0) & 0x01));
|
|
u_cla46_and186 = and_gate(((u_cla46_pg_logic36_and0 >> 0) & 0x01), ((u_cla46_pg_logic38_or0 >> 0) & 0x01));
|
|
u_cla46_and187 = and_gate(((u_cla46_pg_logic39_or0 >> 0) & 0x01), ((u_cla46_pg_logic37_or0 >> 0) & 0x01));
|
|
u_cla46_and188 = and_gate(((u_cla46_and186 >> 0) & 0x01), ((u_cla46_and187 >> 0) & 0x01));
|
|
u_cla46_and189 = and_gate(((u_cla46_pg_logic37_and0 >> 0) & 0x01), ((u_cla46_pg_logic39_or0 >> 0) & 0x01));
|
|
u_cla46_and190 = and_gate(((u_cla46_and189 >> 0) & 0x01), ((u_cla46_pg_logic38_or0 >> 0) & 0x01));
|
|
u_cla46_and191 = and_gate(((u_cla46_pg_logic38_and0 >> 0) & 0x01), ((u_cla46_pg_logic39_or0 >> 0) & 0x01));
|
|
u_cla46_or92 = or_gate(((u_cla46_and185 >> 0) & 0x01), ((u_cla46_and190 >> 0) & 0x01));
|
|
u_cla46_or93 = or_gate(((u_cla46_and188 >> 0) & 0x01), ((u_cla46_and191 >> 0) & 0x01));
|
|
u_cla46_or94 = or_gate(((u_cla46_or92 >> 0) & 0x01), ((u_cla46_or93 >> 0) & 0x01));
|
|
u_cla46_or95 = or_gate(((u_cla46_pg_logic39_and0 >> 0) & 0x01), ((u_cla46_or94 >> 0) & 0x01));
|
|
u_cla46_pg_logic40_or0 = (pg_logic(((a >> 40) & 0x01), ((b >> 40) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic40_and0 = (pg_logic(((a >> 40) & 0x01), ((b >> 40) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic40_xor0 = (pg_logic(((a >> 40) & 0x01), ((b >> 40) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor40 = xor_gate(((u_cla46_pg_logic40_xor0 >> 0) & 0x01), ((u_cla46_or95 >> 0) & 0x01));
|
|
u_cla46_and192 = and_gate(((u_cla46_or95 >> 0) & 0x01), ((u_cla46_pg_logic40_or0 >> 0) & 0x01));
|
|
u_cla46_or96 = or_gate(((u_cla46_pg_logic40_and0 >> 0) & 0x01), ((u_cla46_and192 >> 0) & 0x01));
|
|
u_cla46_pg_logic41_or0 = (pg_logic(((a >> 41) & 0x01), ((b >> 41) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic41_and0 = (pg_logic(((a >> 41) & 0x01), ((b >> 41) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic41_xor0 = (pg_logic(((a >> 41) & 0x01), ((b >> 41) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor41 = xor_gate(((u_cla46_pg_logic41_xor0 >> 0) & 0x01), ((u_cla46_or96 >> 0) & 0x01));
|
|
u_cla46_and193 = and_gate(((u_cla46_or95 >> 0) & 0x01), ((u_cla46_pg_logic41_or0 >> 0) & 0x01));
|
|
u_cla46_and194 = and_gate(((u_cla46_and193 >> 0) & 0x01), ((u_cla46_pg_logic40_or0 >> 0) & 0x01));
|
|
u_cla46_and195 = and_gate(((u_cla46_pg_logic40_and0 >> 0) & 0x01), ((u_cla46_pg_logic41_or0 >> 0) & 0x01));
|
|
u_cla46_or97 = or_gate(((u_cla46_and194 >> 0) & 0x01), ((u_cla46_and195 >> 0) & 0x01));
|
|
u_cla46_or98 = or_gate(((u_cla46_pg_logic41_and0 >> 0) & 0x01), ((u_cla46_or97 >> 0) & 0x01));
|
|
u_cla46_pg_logic42_or0 = (pg_logic(((a >> 42) & 0x01), ((b >> 42) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic42_and0 = (pg_logic(((a >> 42) & 0x01), ((b >> 42) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic42_xor0 = (pg_logic(((a >> 42) & 0x01), ((b >> 42) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor42 = xor_gate(((u_cla46_pg_logic42_xor0 >> 0) & 0x01), ((u_cla46_or98 >> 0) & 0x01));
|
|
u_cla46_and196 = and_gate(((u_cla46_or95 >> 0) & 0x01), ((u_cla46_pg_logic41_or0 >> 0) & 0x01));
|
|
u_cla46_and197 = and_gate(((u_cla46_pg_logic42_or0 >> 0) & 0x01), ((u_cla46_pg_logic40_or0 >> 0) & 0x01));
|
|
u_cla46_and198 = and_gate(((u_cla46_and196 >> 0) & 0x01), ((u_cla46_and197 >> 0) & 0x01));
|
|
u_cla46_and199 = and_gate(((u_cla46_pg_logic40_and0 >> 0) & 0x01), ((u_cla46_pg_logic42_or0 >> 0) & 0x01));
|
|
u_cla46_and200 = and_gate(((u_cla46_and199 >> 0) & 0x01), ((u_cla46_pg_logic41_or0 >> 0) & 0x01));
|
|
u_cla46_and201 = and_gate(((u_cla46_pg_logic41_and0 >> 0) & 0x01), ((u_cla46_pg_logic42_or0 >> 0) & 0x01));
|
|
u_cla46_or99 = or_gate(((u_cla46_and198 >> 0) & 0x01), ((u_cla46_and200 >> 0) & 0x01));
|
|
u_cla46_or100 = or_gate(((u_cla46_or99 >> 0) & 0x01), ((u_cla46_and201 >> 0) & 0x01));
|
|
u_cla46_or101 = or_gate(((u_cla46_pg_logic42_and0 >> 0) & 0x01), ((u_cla46_or100 >> 0) & 0x01));
|
|
u_cla46_pg_logic43_or0 = (pg_logic(((a >> 43) & 0x01), ((b >> 43) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic43_and0 = (pg_logic(((a >> 43) & 0x01), ((b >> 43) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic43_xor0 = (pg_logic(((a >> 43) & 0x01), ((b >> 43) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor43 = xor_gate(((u_cla46_pg_logic43_xor0 >> 0) & 0x01), ((u_cla46_or101 >> 0) & 0x01));
|
|
u_cla46_and202 = and_gate(((u_cla46_or95 >> 0) & 0x01), ((u_cla46_pg_logic42_or0 >> 0) & 0x01));
|
|
u_cla46_and203 = and_gate(((u_cla46_pg_logic43_or0 >> 0) & 0x01), ((u_cla46_pg_logic41_or0 >> 0) & 0x01));
|
|
u_cla46_and204 = and_gate(((u_cla46_and202 >> 0) & 0x01), ((u_cla46_and203 >> 0) & 0x01));
|
|
u_cla46_and205 = and_gate(((u_cla46_and204 >> 0) & 0x01), ((u_cla46_pg_logic40_or0 >> 0) & 0x01));
|
|
u_cla46_and206 = and_gate(((u_cla46_pg_logic40_and0 >> 0) & 0x01), ((u_cla46_pg_logic42_or0 >> 0) & 0x01));
|
|
u_cla46_and207 = and_gate(((u_cla46_pg_logic43_or0 >> 0) & 0x01), ((u_cla46_pg_logic41_or0 >> 0) & 0x01));
|
|
u_cla46_and208 = and_gate(((u_cla46_and206 >> 0) & 0x01), ((u_cla46_and207 >> 0) & 0x01));
|
|
u_cla46_and209 = and_gate(((u_cla46_pg_logic41_and0 >> 0) & 0x01), ((u_cla46_pg_logic43_or0 >> 0) & 0x01));
|
|
u_cla46_and210 = and_gate(((u_cla46_and209 >> 0) & 0x01), ((u_cla46_pg_logic42_or0 >> 0) & 0x01));
|
|
u_cla46_and211 = and_gate(((u_cla46_pg_logic42_and0 >> 0) & 0x01), ((u_cla46_pg_logic43_or0 >> 0) & 0x01));
|
|
u_cla46_or102 = or_gate(((u_cla46_and205 >> 0) & 0x01), ((u_cla46_and210 >> 0) & 0x01));
|
|
u_cla46_or103 = or_gate(((u_cla46_and208 >> 0) & 0x01), ((u_cla46_and211 >> 0) & 0x01));
|
|
u_cla46_or104 = or_gate(((u_cla46_or102 >> 0) & 0x01), ((u_cla46_or103 >> 0) & 0x01));
|
|
u_cla46_or105 = or_gate(((u_cla46_pg_logic43_and0 >> 0) & 0x01), ((u_cla46_or104 >> 0) & 0x01));
|
|
u_cla46_pg_logic44_or0 = (pg_logic(((a >> 44) & 0x01), ((b >> 44) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic44_and0 = (pg_logic(((a >> 44) & 0x01), ((b >> 44) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic44_xor0 = (pg_logic(((a >> 44) & 0x01), ((b >> 44) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor44 = xor_gate(((u_cla46_pg_logic44_xor0 >> 0) & 0x01), ((u_cla46_or105 >> 0) & 0x01));
|
|
u_cla46_and212 = and_gate(((u_cla46_or105 >> 0) & 0x01), ((u_cla46_pg_logic44_or0 >> 0) & 0x01));
|
|
u_cla46_or106 = or_gate(((u_cla46_pg_logic44_and0 >> 0) & 0x01), ((u_cla46_and212 >> 0) & 0x01));
|
|
u_cla46_pg_logic45_or0 = (pg_logic(((a >> 45) & 0x01), ((b >> 45) & 0x01)) >> 0) & 0x01;
|
|
u_cla46_pg_logic45_and0 = (pg_logic(((a >> 45) & 0x01), ((b >> 45) & 0x01)) >> 1) & 0x01;
|
|
u_cla46_pg_logic45_xor0 = (pg_logic(((a >> 45) & 0x01), ((b >> 45) & 0x01)) >> 2) & 0x01;
|
|
u_cla46_xor45 = xor_gate(((u_cla46_pg_logic45_xor0 >> 0) & 0x01), ((u_cla46_or106 >> 0) & 0x01));
|
|
u_cla46_and213 = and_gate(((u_cla46_or105 >> 0) & 0x01), ((u_cla46_pg_logic45_or0 >> 0) & 0x01));
|
|
u_cla46_and214 = and_gate(((u_cla46_and213 >> 0) & 0x01), ((u_cla46_pg_logic44_or0 >> 0) & 0x01));
|
|
u_cla46_and215 = and_gate(((u_cla46_pg_logic44_and0 >> 0) & 0x01), ((u_cla46_pg_logic45_or0 >> 0) & 0x01));
|
|
u_cla46_or107 = or_gate(((u_cla46_and214 >> 0) & 0x01), ((u_cla46_and215 >> 0) & 0x01));
|
|
u_cla46_or108 = or_gate(((u_cla46_pg_logic45_and0 >> 0) & 0x01), ((u_cla46_or107 >> 0) & 0x01));
|
|
|
|
u_cla46_out |= ((u_cla46_pg_logic0_xor0 >> 0) & 0x01ull) << 0;
|
|
u_cla46_out |= ((u_cla46_xor1 >> 0) & 0x01ull) << 1;
|
|
u_cla46_out |= ((u_cla46_xor2 >> 0) & 0x01ull) << 2;
|
|
u_cla46_out |= ((u_cla46_xor3 >> 0) & 0x01ull) << 3;
|
|
u_cla46_out |= ((u_cla46_xor4 >> 0) & 0x01ull) << 4;
|
|
u_cla46_out |= ((u_cla46_xor5 >> 0) & 0x01ull) << 5;
|
|
u_cla46_out |= ((u_cla46_xor6 >> 0) & 0x01ull) << 6;
|
|
u_cla46_out |= ((u_cla46_xor7 >> 0) & 0x01ull) << 7;
|
|
u_cla46_out |= ((u_cla46_xor8 >> 0) & 0x01ull) << 8;
|
|
u_cla46_out |= ((u_cla46_xor9 >> 0) & 0x01ull) << 9;
|
|
u_cla46_out |= ((u_cla46_xor10 >> 0) & 0x01ull) << 10;
|
|
u_cla46_out |= ((u_cla46_xor11 >> 0) & 0x01ull) << 11;
|
|
u_cla46_out |= ((u_cla46_xor12 >> 0) & 0x01ull) << 12;
|
|
u_cla46_out |= ((u_cla46_xor13 >> 0) & 0x01ull) << 13;
|
|
u_cla46_out |= ((u_cla46_xor14 >> 0) & 0x01ull) << 14;
|
|
u_cla46_out |= ((u_cla46_xor15 >> 0) & 0x01ull) << 15;
|
|
u_cla46_out |= ((u_cla46_xor16 >> 0) & 0x01ull) << 16;
|
|
u_cla46_out |= ((u_cla46_xor17 >> 0) & 0x01ull) << 17;
|
|
u_cla46_out |= ((u_cla46_xor18 >> 0) & 0x01ull) << 18;
|
|
u_cla46_out |= ((u_cla46_xor19 >> 0) & 0x01ull) << 19;
|
|
u_cla46_out |= ((u_cla46_xor20 >> 0) & 0x01ull) << 20;
|
|
u_cla46_out |= ((u_cla46_xor21 >> 0) & 0x01ull) << 21;
|
|
u_cla46_out |= ((u_cla46_xor22 >> 0) & 0x01ull) << 22;
|
|
u_cla46_out |= ((u_cla46_xor23 >> 0) & 0x01ull) << 23;
|
|
u_cla46_out |= ((u_cla46_xor24 >> 0) & 0x01ull) << 24;
|
|
u_cla46_out |= ((u_cla46_xor25 >> 0) & 0x01ull) << 25;
|
|
u_cla46_out |= ((u_cla46_xor26 >> 0) & 0x01ull) << 26;
|
|
u_cla46_out |= ((u_cla46_xor27 >> 0) & 0x01ull) << 27;
|
|
u_cla46_out |= ((u_cla46_xor28 >> 0) & 0x01ull) << 28;
|
|
u_cla46_out |= ((u_cla46_xor29 >> 0) & 0x01ull) << 29;
|
|
u_cla46_out |= ((u_cla46_xor30 >> 0) & 0x01ull) << 30;
|
|
u_cla46_out |= ((u_cla46_xor31 >> 0) & 0x01ull) << 31;
|
|
u_cla46_out |= ((u_cla46_xor32 >> 0) & 0x01ull) << 32;
|
|
u_cla46_out |= ((u_cla46_xor33 >> 0) & 0x01ull) << 33;
|
|
u_cla46_out |= ((u_cla46_xor34 >> 0) & 0x01ull) << 34;
|
|
u_cla46_out |= ((u_cla46_xor35 >> 0) & 0x01ull) << 35;
|
|
u_cla46_out |= ((u_cla46_xor36 >> 0) & 0x01ull) << 36;
|
|
u_cla46_out |= ((u_cla46_xor37 >> 0) & 0x01ull) << 37;
|
|
u_cla46_out |= ((u_cla46_xor38 >> 0) & 0x01ull) << 38;
|
|
u_cla46_out |= ((u_cla46_xor39 >> 0) & 0x01ull) << 39;
|
|
u_cla46_out |= ((u_cla46_xor40 >> 0) & 0x01ull) << 40;
|
|
u_cla46_out |= ((u_cla46_xor41 >> 0) & 0x01ull) << 41;
|
|
u_cla46_out |= ((u_cla46_xor42 >> 0) & 0x01ull) << 42;
|
|
u_cla46_out |= ((u_cla46_xor43 >> 0) & 0x01ull) << 43;
|
|
u_cla46_out |= ((u_cla46_xor44 >> 0) & 0x01ull) << 44;
|
|
u_cla46_out |= ((u_cla46_xor45 >> 0) & 0x01ull) << 45;
|
|
u_cla46_out |= ((u_cla46_or108 >> 0) & 0x01ull) << 46;
|
|
return u_cla46_out;
|
|
}
|
|
|
|
int64_t s_wallace_cla24(int64_t a, int64_t b){
|
|
int64_t s_wallace_cla24_out = 0;
|
|
uint8_t s_wallace_cla24_and_2_0 = 0;
|
|
uint8_t s_wallace_cla24_and_1_1 = 0;
|
|
uint8_t s_wallace_cla24_ha0_xor0 = 0;
|
|
uint8_t s_wallace_cla24_ha0_and0 = 0;
|
|
uint8_t s_wallace_cla24_and_3_0 = 0;
|
|
uint8_t s_wallace_cla24_and_2_1 = 0;
|
|
uint8_t s_wallace_cla24_fa0_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa0_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_4_0 = 0;
|
|
uint8_t s_wallace_cla24_and_3_1 = 0;
|
|
uint8_t s_wallace_cla24_fa1_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa1_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_5_0 = 0;
|
|
uint8_t s_wallace_cla24_and_4_1 = 0;
|
|
uint8_t s_wallace_cla24_fa2_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa2_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_6_0 = 0;
|
|
uint8_t s_wallace_cla24_and_5_1 = 0;
|
|
uint8_t s_wallace_cla24_fa3_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa3_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_7_0 = 0;
|
|
uint8_t s_wallace_cla24_and_6_1 = 0;
|
|
uint8_t s_wallace_cla24_fa4_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa4_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_8_0 = 0;
|
|
uint8_t s_wallace_cla24_and_7_1 = 0;
|
|
uint8_t s_wallace_cla24_fa5_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa5_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_9_0 = 0;
|
|
uint8_t s_wallace_cla24_and_8_1 = 0;
|
|
uint8_t s_wallace_cla24_fa6_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa6_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_10_0 = 0;
|
|
uint8_t s_wallace_cla24_and_9_1 = 0;
|
|
uint8_t s_wallace_cla24_fa7_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa7_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_11_0 = 0;
|
|
uint8_t s_wallace_cla24_and_10_1 = 0;
|
|
uint8_t s_wallace_cla24_fa8_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa8_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_12_0 = 0;
|
|
uint8_t s_wallace_cla24_and_11_1 = 0;
|
|
uint8_t s_wallace_cla24_fa9_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa9_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_13_0 = 0;
|
|
uint8_t s_wallace_cla24_and_12_1 = 0;
|
|
uint8_t s_wallace_cla24_fa10_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa10_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_14_0 = 0;
|
|
uint8_t s_wallace_cla24_and_13_1 = 0;
|
|
uint8_t s_wallace_cla24_fa11_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa11_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_15_0 = 0;
|
|
uint8_t s_wallace_cla24_and_14_1 = 0;
|
|
uint8_t s_wallace_cla24_fa12_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa12_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_16_0 = 0;
|
|
uint8_t s_wallace_cla24_and_15_1 = 0;
|
|
uint8_t s_wallace_cla24_fa13_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa13_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_17_0 = 0;
|
|
uint8_t s_wallace_cla24_and_16_1 = 0;
|
|
uint8_t s_wallace_cla24_fa14_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa14_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_18_0 = 0;
|
|
uint8_t s_wallace_cla24_and_17_1 = 0;
|
|
uint8_t s_wallace_cla24_fa15_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa15_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_19_0 = 0;
|
|
uint8_t s_wallace_cla24_and_18_1 = 0;
|
|
uint8_t s_wallace_cla24_fa16_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa16_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_20_0 = 0;
|
|
uint8_t s_wallace_cla24_and_19_1 = 0;
|
|
uint8_t s_wallace_cla24_fa17_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa17_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_21_0 = 0;
|
|
uint8_t s_wallace_cla24_and_20_1 = 0;
|
|
uint8_t s_wallace_cla24_fa18_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa18_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_22_0 = 0;
|
|
uint8_t s_wallace_cla24_and_21_1 = 0;
|
|
uint8_t s_wallace_cla24_fa19_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa19_or0 = 0;
|
|
uint8_t s_wallace_cla24_nand_23_0 = 0;
|
|
uint8_t s_wallace_cla24_and_22_1 = 0;
|
|
uint8_t s_wallace_cla24_fa20_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa20_or0 = 0;
|
|
uint8_t s_wallace_cla24_nand_23_1 = 0;
|
|
uint8_t s_wallace_cla24_fa21_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa21_or0 = 0;
|
|
uint8_t s_wallace_cla24_nand_23_2 = 0;
|
|
uint8_t s_wallace_cla24_and_22_3 = 0;
|
|
uint8_t s_wallace_cla24_fa22_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa22_or0 = 0;
|
|
uint8_t s_wallace_cla24_nand_23_3 = 0;
|
|
uint8_t s_wallace_cla24_and_22_4 = 0;
|
|
uint8_t s_wallace_cla24_fa23_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa23_or0 = 0;
|
|
uint8_t s_wallace_cla24_nand_23_4 = 0;
|
|
uint8_t s_wallace_cla24_and_22_5 = 0;
|
|
uint8_t s_wallace_cla24_fa24_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa24_or0 = 0;
|
|
uint8_t s_wallace_cla24_nand_23_5 = 0;
|
|
uint8_t s_wallace_cla24_and_22_6 = 0;
|
|
uint8_t s_wallace_cla24_fa25_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa25_or0 = 0;
|
|
uint8_t s_wallace_cla24_nand_23_6 = 0;
|
|
uint8_t s_wallace_cla24_and_22_7 = 0;
|
|
uint8_t s_wallace_cla24_fa26_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa26_or0 = 0;
|
|
uint8_t s_wallace_cla24_nand_23_7 = 0;
|
|
uint8_t s_wallace_cla24_and_22_8 = 0;
|
|
uint8_t s_wallace_cla24_fa27_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa27_or0 = 0;
|
|
uint8_t s_wallace_cla24_nand_23_8 = 0;
|
|
uint8_t s_wallace_cla24_and_22_9 = 0;
|
|
uint8_t s_wallace_cla24_fa28_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa28_or0 = 0;
|
|
uint8_t s_wallace_cla24_nand_23_9 = 0;
|
|
uint8_t s_wallace_cla24_and_22_10 = 0;
|
|
uint8_t s_wallace_cla24_fa29_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa29_or0 = 0;
|
|
uint8_t s_wallace_cla24_nand_23_10 = 0;
|
|
uint8_t s_wallace_cla24_and_22_11 = 0;
|
|
uint8_t s_wallace_cla24_fa30_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa30_or0 = 0;
|
|
uint8_t s_wallace_cla24_nand_23_11 = 0;
|
|
uint8_t s_wallace_cla24_and_22_12 = 0;
|
|
uint8_t s_wallace_cla24_fa31_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa31_or0 = 0;
|
|
uint8_t s_wallace_cla24_nand_23_12 = 0;
|
|
uint8_t s_wallace_cla24_and_22_13 = 0;
|
|
uint8_t s_wallace_cla24_fa32_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa32_or0 = 0;
|
|
uint8_t s_wallace_cla24_nand_23_13 = 0;
|
|
uint8_t s_wallace_cla24_and_22_14 = 0;
|
|
uint8_t s_wallace_cla24_fa33_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa33_or0 = 0;
|
|
uint8_t s_wallace_cla24_nand_23_14 = 0;
|
|
uint8_t s_wallace_cla24_and_22_15 = 0;
|
|
uint8_t s_wallace_cla24_fa34_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa34_or0 = 0;
|
|
uint8_t s_wallace_cla24_nand_23_15 = 0;
|
|
uint8_t s_wallace_cla24_and_22_16 = 0;
|
|
uint8_t s_wallace_cla24_fa35_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa35_or0 = 0;
|
|
uint8_t s_wallace_cla24_nand_23_16 = 0;
|
|
uint8_t s_wallace_cla24_and_22_17 = 0;
|
|
uint8_t s_wallace_cla24_fa36_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa36_or0 = 0;
|
|
uint8_t s_wallace_cla24_nand_23_17 = 0;
|
|
uint8_t s_wallace_cla24_and_22_18 = 0;
|
|
uint8_t s_wallace_cla24_fa37_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa37_or0 = 0;
|
|
uint8_t s_wallace_cla24_nand_23_18 = 0;
|
|
uint8_t s_wallace_cla24_and_22_19 = 0;
|
|
uint8_t s_wallace_cla24_fa38_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa38_or0 = 0;
|
|
uint8_t s_wallace_cla24_nand_23_19 = 0;
|
|
uint8_t s_wallace_cla24_and_22_20 = 0;
|
|
uint8_t s_wallace_cla24_fa39_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa39_or0 = 0;
|
|
uint8_t s_wallace_cla24_nand_23_20 = 0;
|
|
uint8_t s_wallace_cla24_and_22_21 = 0;
|
|
uint8_t s_wallace_cla24_fa40_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa40_or0 = 0;
|
|
uint8_t s_wallace_cla24_nand_23_21 = 0;
|
|
uint8_t s_wallace_cla24_and_22_22 = 0;
|
|
uint8_t s_wallace_cla24_fa41_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa41_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_1_2 = 0;
|
|
uint8_t s_wallace_cla24_and_0_3 = 0;
|
|
uint8_t s_wallace_cla24_ha1_xor0 = 0;
|
|
uint8_t s_wallace_cla24_ha1_and0 = 0;
|
|
uint8_t s_wallace_cla24_and_2_2 = 0;
|
|
uint8_t s_wallace_cla24_and_1_3 = 0;
|
|
uint8_t s_wallace_cla24_fa42_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa42_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_3_2 = 0;
|
|
uint8_t s_wallace_cla24_and_2_3 = 0;
|
|
uint8_t s_wallace_cla24_fa43_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa43_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_4_2 = 0;
|
|
uint8_t s_wallace_cla24_and_3_3 = 0;
|
|
uint8_t s_wallace_cla24_fa44_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa44_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_5_2 = 0;
|
|
uint8_t s_wallace_cla24_and_4_3 = 0;
|
|
uint8_t s_wallace_cla24_fa45_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa45_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_6_2 = 0;
|
|
uint8_t s_wallace_cla24_and_5_3 = 0;
|
|
uint8_t s_wallace_cla24_fa46_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa46_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_7_2 = 0;
|
|
uint8_t s_wallace_cla24_and_6_3 = 0;
|
|
uint8_t s_wallace_cla24_fa47_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa47_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_8_2 = 0;
|
|
uint8_t s_wallace_cla24_and_7_3 = 0;
|
|
uint8_t s_wallace_cla24_fa48_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa48_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_9_2 = 0;
|
|
uint8_t s_wallace_cla24_and_8_3 = 0;
|
|
uint8_t s_wallace_cla24_fa49_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa49_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_10_2 = 0;
|
|
uint8_t s_wallace_cla24_and_9_3 = 0;
|
|
uint8_t s_wallace_cla24_fa50_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa50_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_11_2 = 0;
|
|
uint8_t s_wallace_cla24_and_10_3 = 0;
|
|
uint8_t s_wallace_cla24_fa51_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa51_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_12_2 = 0;
|
|
uint8_t s_wallace_cla24_and_11_3 = 0;
|
|
uint8_t s_wallace_cla24_fa52_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa52_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_13_2 = 0;
|
|
uint8_t s_wallace_cla24_and_12_3 = 0;
|
|
uint8_t s_wallace_cla24_fa53_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa53_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_14_2 = 0;
|
|
uint8_t s_wallace_cla24_and_13_3 = 0;
|
|
uint8_t s_wallace_cla24_fa54_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa54_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_15_2 = 0;
|
|
uint8_t s_wallace_cla24_and_14_3 = 0;
|
|
uint8_t s_wallace_cla24_fa55_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa55_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_16_2 = 0;
|
|
uint8_t s_wallace_cla24_and_15_3 = 0;
|
|
uint8_t s_wallace_cla24_fa56_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa56_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_17_2 = 0;
|
|
uint8_t s_wallace_cla24_and_16_3 = 0;
|
|
uint8_t s_wallace_cla24_fa57_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa57_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_18_2 = 0;
|
|
uint8_t s_wallace_cla24_and_17_3 = 0;
|
|
uint8_t s_wallace_cla24_fa58_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa58_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_19_2 = 0;
|
|
uint8_t s_wallace_cla24_and_18_3 = 0;
|
|
uint8_t s_wallace_cla24_fa59_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa59_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_20_2 = 0;
|
|
uint8_t s_wallace_cla24_and_19_3 = 0;
|
|
uint8_t s_wallace_cla24_fa60_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa60_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_21_2 = 0;
|
|
uint8_t s_wallace_cla24_and_20_3 = 0;
|
|
uint8_t s_wallace_cla24_fa61_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa61_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_22_2 = 0;
|
|
uint8_t s_wallace_cla24_and_21_3 = 0;
|
|
uint8_t s_wallace_cla24_fa62_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa62_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_21_4 = 0;
|
|
uint8_t s_wallace_cla24_and_20_5 = 0;
|
|
uint8_t s_wallace_cla24_fa63_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa63_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_21_5 = 0;
|
|
uint8_t s_wallace_cla24_and_20_6 = 0;
|
|
uint8_t s_wallace_cla24_fa64_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa64_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_21_6 = 0;
|
|
uint8_t s_wallace_cla24_and_20_7 = 0;
|
|
uint8_t s_wallace_cla24_fa65_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa65_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_21_7 = 0;
|
|
uint8_t s_wallace_cla24_and_20_8 = 0;
|
|
uint8_t s_wallace_cla24_fa66_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa66_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_21_8 = 0;
|
|
uint8_t s_wallace_cla24_and_20_9 = 0;
|
|
uint8_t s_wallace_cla24_fa67_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa67_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_21_9 = 0;
|
|
uint8_t s_wallace_cla24_and_20_10 = 0;
|
|
uint8_t s_wallace_cla24_fa68_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa68_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_21_10 = 0;
|
|
uint8_t s_wallace_cla24_and_20_11 = 0;
|
|
uint8_t s_wallace_cla24_fa69_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa69_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_21_11 = 0;
|
|
uint8_t s_wallace_cla24_and_20_12 = 0;
|
|
uint8_t s_wallace_cla24_fa70_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa70_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_21_12 = 0;
|
|
uint8_t s_wallace_cla24_and_20_13 = 0;
|
|
uint8_t s_wallace_cla24_fa71_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa71_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_21_13 = 0;
|
|
uint8_t s_wallace_cla24_and_20_14 = 0;
|
|
uint8_t s_wallace_cla24_fa72_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa72_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_21_14 = 0;
|
|
uint8_t s_wallace_cla24_and_20_15 = 0;
|
|
uint8_t s_wallace_cla24_fa73_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa73_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_21_15 = 0;
|
|
uint8_t s_wallace_cla24_and_20_16 = 0;
|
|
uint8_t s_wallace_cla24_fa74_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa74_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_21_16 = 0;
|
|
uint8_t s_wallace_cla24_and_20_17 = 0;
|
|
uint8_t s_wallace_cla24_fa75_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa75_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_21_17 = 0;
|
|
uint8_t s_wallace_cla24_and_20_18 = 0;
|
|
uint8_t s_wallace_cla24_fa76_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa76_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_21_18 = 0;
|
|
uint8_t s_wallace_cla24_and_20_19 = 0;
|
|
uint8_t s_wallace_cla24_fa77_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa77_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_21_19 = 0;
|
|
uint8_t s_wallace_cla24_and_20_20 = 0;
|
|
uint8_t s_wallace_cla24_fa78_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa78_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_21_20 = 0;
|
|
uint8_t s_wallace_cla24_and_20_21 = 0;
|
|
uint8_t s_wallace_cla24_fa79_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa79_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_21_21 = 0;
|
|
uint8_t s_wallace_cla24_and_20_22 = 0;
|
|
uint8_t s_wallace_cla24_fa80_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa80_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_21_22 = 0;
|
|
uint8_t s_wallace_cla24_nand_20_23 = 0;
|
|
uint8_t s_wallace_cla24_fa81_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa81_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_0_4 = 0;
|
|
uint8_t s_wallace_cla24_ha2_xor0 = 0;
|
|
uint8_t s_wallace_cla24_ha2_and0 = 0;
|
|
uint8_t s_wallace_cla24_and_1_4 = 0;
|
|
uint8_t s_wallace_cla24_and_0_5 = 0;
|
|
uint8_t s_wallace_cla24_fa82_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa82_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_2_4 = 0;
|
|
uint8_t s_wallace_cla24_and_1_5 = 0;
|
|
uint8_t s_wallace_cla24_fa83_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa83_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_3_4 = 0;
|
|
uint8_t s_wallace_cla24_and_2_5 = 0;
|
|
uint8_t s_wallace_cla24_fa84_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa84_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_4_4 = 0;
|
|
uint8_t s_wallace_cla24_and_3_5 = 0;
|
|
uint8_t s_wallace_cla24_fa85_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa85_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_5_4 = 0;
|
|
uint8_t s_wallace_cla24_and_4_5 = 0;
|
|
uint8_t s_wallace_cla24_fa86_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa86_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_6_4 = 0;
|
|
uint8_t s_wallace_cla24_and_5_5 = 0;
|
|
uint8_t s_wallace_cla24_fa87_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa87_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_7_4 = 0;
|
|
uint8_t s_wallace_cla24_and_6_5 = 0;
|
|
uint8_t s_wallace_cla24_fa88_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa88_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_8_4 = 0;
|
|
uint8_t s_wallace_cla24_and_7_5 = 0;
|
|
uint8_t s_wallace_cla24_fa89_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa89_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_9_4 = 0;
|
|
uint8_t s_wallace_cla24_and_8_5 = 0;
|
|
uint8_t s_wallace_cla24_fa90_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa90_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_10_4 = 0;
|
|
uint8_t s_wallace_cla24_and_9_5 = 0;
|
|
uint8_t s_wallace_cla24_fa91_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa91_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_11_4 = 0;
|
|
uint8_t s_wallace_cla24_and_10_5 = 0;
|
|
uint8_t s_wallace_cla24_fa92_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa92_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_12_4 = 0;
|
|
uint8_t s_wallace_cla24_and_11_5 = 0;
|
|
uint8_t s_wallace_cla24_fa93_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa93_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_13_4 = 0;
|
|
uint8_t s_wallace_cla24_and_12_5 = 0;
|
|
uint8_t s_wallace_cla24_fa94_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa94_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_14_4 = 0;
|
|
uint8_t s_wallace_cla24_and_13_5 = 0;
|
|
uint8_t s_wallace_cla24_fa95_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa95_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_15_4 = 0;
|
|
uint8_t s_wallace_cla24_and_14_5 = 0;
|
|
uint8_t s_wallace_cla24_fa96_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa96_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_16_4 = 0;
|
|
uint8_t s_wallace_cla24_and_15_5 = 0;
|
|
uint8_t s_wallace_cla24_fa97_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa97_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_17_4 = 0;
|
|
uint8_t s_wallace_cla24_and_16_5 = 0;
|
|
uint8_t s_wallace_cla24_fa98_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa98_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_18_4 = 0;
|
|
uint8_t s_wallace_cla24_and_17_5 = 0;
|
|
uint8_t s_wallace_cla24_fa99_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa99_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_19_4 = 0;
|
|
uint8_t s_wallace_cla24_and_18_5 = 0;
|
|
uint8_t s_wallace_cla24_fa100_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa100_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_20_4 = 0;
|
|
uint8_t s_wallace_cla24_and_19_5 = 0;
|
|
uint8_t s_wallace_cla24_fa101_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa101_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_19_6 = 0;
|
|
uint8_t s_wallace_cla24_and_18_7 = 0;
|
|
uint8_t s_wallace_cla24_fa102_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa102_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_19_7 = 0;
|
|
uint8_t s_wallace_cla24_and_18_8 = 0;
|
|
uint8_t s_wallace_cla24_fa103_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa103_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_19_8 = 0;
|
|
uint8_t s_wallace_cla24_and_18_9 = 0;
|
|
uint8_t s_wallace_cla24_fa104_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa104_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_19_9 = 0;
|
|
uint8_t s_wallace_cla24_and_18_10 = 0;
|
|
uint8_t s_wallace_cla24_fa105_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa105_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_19_10 = 0;
|
|
uint8_t s_wallace_cla24_and_18_11 = 0;
|
|
uint8_t s_wallace_cla24_fa106_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa106_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_19_11 = 0;
|
|
uint8_t s_wallace_cla24_and_18_12 = 0;
|
|
uint8_t s_wallace_cla24_fa107_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa107_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_19_12 = 0;
|
|
uint8_t s_wallace_cla24_and_18_13 = 0;
|
|
uint8_t s_wallace_cla24_fa108_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa108_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_19_13 = 0;
|
|
uint8_t s_wallace_cla24_and_18_14 = 0;
|
|
uint8_t s_wallace_cla24_fa109_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa109_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_19_14 = 0;
|
|
uint8_t s_wallace_cla24_and_18_15 = 0;
|
|
uint8_t s_wallace_cla24_fa110_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa110_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_19_15 = 0;
|
|
uint8_t s_wallace_cla24_and_18_16 = 0;
|
|
uint8_t s_wallace_cla24_fa111_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa111_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_19_16 = 0;
|
|
uint8_t s_wallace_cla24_and_18_17 = 0;
|
|
uint8_t s_wallace_cla24_fa112_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa112_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_19_17 = 0;
|
|
uint8_t s_wallace_cla24_and_18_18 = 0;
|
|
uint8_t s_wallace_cla24_fa113_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa113_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_19_18 = 0;
|
|
uint8_t s_wallace_cla24_and_18_19 = 0;
|
|
uint8_t s_wallace_cla24_fa114_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa114_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_19_19 = 0;
|
|
uint8_t s_wallace_cla24_and_18_20 = 0;
|
|
uint8_t s_wallace_cla24_fa115_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa115_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_19_20 = 0;
|
|
uint8_t s_wallace_cla24_and_18_21 = 0;
|
|
uint8_t s_wallace_cla24_fa116_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa116_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_19_21 = 0;
|
|
uint8_t s_wallace_cla24_and_18_22 = 0;
|
|
uint8_t s_wallace_cla24_fa117_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa117_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_19_22 = 0;
|
|
uint8_t s_wallace_cla24_nand_18_23 = 0;
|
|
uint8_t s_wallace_cla24_fa118_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa118_or0 = 0;
|
|
uint8_t s_wallace_cla24_nand_19_23 = 0;
|
|
uint8_t s_wallace_cla24_fa119_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa119_or0 = 0;
|
|
uint8_t s_wallace_cla24_ha3_xor0 = 0;
|
|
uint8_t s_wallace_cla24_ha3_and0 = 0;
|
|
uint8_t s_wallace_cla24_and_0_6 = 0;
|
|
uint8_t s_wallace_cla24_fa120_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa120_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_1_6 = 0;
|
|
uint8_t s_wallace_cla24_and_0_7 = 0;
|
|
uint8_t s_wallace_cla24_fa121_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa121_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_2_6 = 0;
|
|
uint8_t s_wallace_cla24_and_1_7 = 0;
|
|
uint8_t s_wallace_cla24_fa122_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa122_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_3_6 = 0;
|
|
uint8_t s_wallace_cla24_and_2_7 = 0;
|
|
uint8_t s_wallace_cla24_fa123_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa123_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_4_6 = 0;
|
|
uint8_t s_wallace_cla24_and_3_7 = 0;
|
|
uint8_t s_wallace_cla24_fa124_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa124_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_5_6 = 0;
|
|
uint8_t s_wallace_cla24_and_4_7 = 0;
|
|
uint8_t s_wallace_cla24_fa125_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa125_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_6_6 = 0;
|
|
uint8_t s_wallace_cla24_and_5_7 = 0;
|
|
uint8_t s_wallace_cla24_fa126_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa126_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_7_6 = 0;
|
|
uint8_t s_wallace_cla24_and_6_7 = 0;
|
|
uint8_t s_wallace_cla24_fa127_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa127_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_8_6 = 0;
|
|
uint8_t s_wallace_cla24_and_7_7 = 0;
|
|
uint8_t s_wallace_cla24_fa128_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa128_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_9_6 = 0;
|
|
uint8_t s_wallace_cla24_and_8_7 = 0;
|
|
uint8_t s_wallace_cla24_fa129_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa129_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_10_6 = 0;
|
|
uint8_t s_wallace_cla24_and_9_7 = 0;
|
|
uint8_t s_wallace_cla24_fa130_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa130_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_11_6 = 0;
|
|
uint8_t s_wallace_cla24_and_10_7 = 0;
|
|
uint8_t s_wallace_cla24_fa131_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa131_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_12_6 = 0;
|
|
uint8_t s_wallace_cla24_and_11_7 = 0;
|
|
uint8_t s_wallace_cla24_fa132_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa132_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_13_6 = 0;
|
|
uint8_t s_wallace_cla24_and_12_7 = 0;
|
|
uint8_t s_wallace_cla24_fa133_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa133_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_14_6 = 0;
|
|
uint8_t s_wallace_cla24_and_13_7 = 0;
|
|
uint8_t s_wallace_cla24_fa134_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa134_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_15_6 = 0;
|
|
uint8_t s_wallace_cla24_and_14_7 = 0;
|
|
uint8_t s_wallace_cla24_fa135_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa135_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_16_6 = 0;
|
|
uint8_t s_wallace_cla24_and_15_7 = 0;
|
|
uint8_t s_wallace_cla24_fa136_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa136_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_17_6 = 0;
|
|
uint8_t s_wallace_cla24_and_16_7 = 0;
|
|
uint8_t s_wallace_cla24_fa137_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa137_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_18_6 = 0;
|
|
uint8_t s_wallace_cla24_and_17_7 = 0;
|
|
uint8_t s_wallace_cla24_fa138_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa138_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_17_8 = 0;
|
|
uint8_t s_wallace_cla24_and_16_9 = 0;
|
|
uint8_t s_wallace_cla24_fa139_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa139_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_17_9 = 0;
|
|
uint8_t s_wallace_cla24_and_16_10 = 0;
|
|
uint8_t s_wallace_cla24_fa140_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa140_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_17_10 = 0;
|
|
uint8_t s_wallace_cla24_and_16_11 = 0;
|
|
uint8_t s_wallace_cla24_fa141_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa141_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_17_11 = 0;
|
|
uint8_t s_wallace_cla24_and_16_12 = 0;
|
|
uint8_t s_wallace_cla24_fa142_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa142_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_17_12 = 0;
|
|
uint8_t s_wallace_cla24_and_16_13 = 0;
|
|
uint8_t s_wallace_cla24_fa143_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa143_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_17_13 = 0;
|
|
uint8_t s_wallace_cla24_and_16_14 = 0;
|
|
uint8_t s_wallace_cla24_fa144_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa144_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_17_14 = 0;
|
|
uint8_t s_wallace_cla24_and_16_15 = 0;
|
|
uint8_t s_wallace_cla24_fa145_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa145_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_17_15 = 0;
|
|
uint8_t s_wallace_cla24_and_16_16 = 0;
|
|
uint8_t s_wallace_cla24_fa146_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa146_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_17_16 = 0;
|
|
uint8_t s_wallace_cla24_and_16_17 = 0;
|
|
uint8_t s_wallace_cla24_fa147_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa147_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_17_17 = 0;
|
|
uint8_t s_wallace_cla24_and_16_18 = 0;
|
|
uint8_t s_wallace_cla24_fa148_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa148_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_17_18 = 0;
|
|
uint8_t s_wallace_cla24_and_16_19 = 0;
|
|
uint8_t s_wallace_cla24_fa149_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa149_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_17_19 = 0;
|
|
uint8_t s_wallace_cla24_and_16_20 = 0;
|
|
uint8_t s_wallace_cla24_fa150_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa150_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_17_20 = 0;
|
|
uint8_t s_wallace_cla24_and_16_21 = 0;
|
|
uint8_t s_wallace_cla24_fa151_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa151_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_17_21 = 0;
|
|
uint8_t s_wallace_cla24_and_16_22 = 0;
|
|
uint8_t s_wallace_cla24_fa152_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa152_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_17_22 = 0;
|
|
uint8_t s_wallace_cla24_nand_16_23 = 0;
|
|
uint8_t s_wallace_cla24_fa153_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa153_or0 = 0;
|
|
uint8_t s_wallace_cla24_nand_17_23 = 0;
|
|
uint8_t s_wallace_cla24_fa154_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa154_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa155_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa155_or0 = 0;
|
|
uint8_t s_wallace_cla24_ha4_xor0 = 0;
|
|
uint8_t s_wallace_cla24_ha4_and0 = 0;
|
|
uint8_t s_wallace_cla24_fa156_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa156_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_0_8 = 0;
|
|
uint8_t s_wallace_cla24_fa157_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa157_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_1_8 = 0;
|
|
uint8_t s_wallace_cla24_and_0_9 = 0;
|
|
uint8_t s_wallace_cla24_fa158_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa158_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_2_8 = 0;
|
|
uint8_t s_wallace_cla24_and_1_9 = 0;
|
|
uint8_t s_wallace_cla24_fa159_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa159_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_3_8 = 0;
|
|
uint8_t s_wallace_cla24_and_2_9 = 0;
|
|
uint8_t s_wallace_cla24_fa160_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa160_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_4_8 = 0;
|
|
uint8_t s_wallace_cla24_and_3_9 = 0;
|
|
uint8_t s_wallace_cla24_fa161_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa161_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_5_8 = 0;
|
|
uint8_t s_wallace_cla24_and_4_9 = 0;
|
|
uint8_t s_wallace_cla24_fa162_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa162_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_6_8 = 0;
|
|
uint8_t s_wallace_cla24_and_5_9 = 0;
|
|
uint8_t s_wallace_cla24_fa163_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa163_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_7_8 = 0;
|
|
uint8_t s_wallace_cla24_and_6_9 = 0;
|
|
uint8_t s_wallace_cla24_fa164_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa164_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_8_8 = 0;
|
|
uint8_t s_wallace_cla24_and_7_9 = 0;
|
|
uint8_t s_wallace_cla24_fa165_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa165_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_9_8 = 0;
|
|
uint8_t s_wallace_cla24_and_8_9 = 0;
|
|
uint8_t s_wallace_cla24_fa166_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa166_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_10_8 = 0;
|
|
uint8_t s_wallace_cla24_and_9_9 = 0;
|
|
uint8_t s_wallace_cla24_fa167_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa167_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_11_8 = 0;
|
|
uint8_t s_wallace_cla24_and_10_9 = 0;
|
|
uint8_t s_wallace_cla24_fa168_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa168_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_12_8 = 0;
|
|
uint8_t s_wallace_cla24_and_11_9 = 0;
|
|
uint8_t s_wallace_cla24_fa169_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa169_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_13_8 = 0;
|
|
uint8_t s_wallace_cla24_and_12_9 = 0;
|
|
uint8_t s_wallace_cla24_fa170_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa170_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_14_8 = 0;
|
|
uint8_t s_wallace_cla24_and_13_9 = 0;
|
|
uint8_t s_wallace_cla24_fa171_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa171_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_15_8 = 0;
|
|
uint8_t s_wallace_cla24_and_14_9 = 0;
|
|
uint8_t s_wallace_cla24_fa172_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa172_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_16_8 = 0;
|
|
uint8_t s_wallace_cla24_and_15_9 = 0;
|
|
uint8_t s_wallace_cla24_fa173_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa173_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_15_10 = 0;
|
|
uint8_t s_wallace_cla24_and_14_11 = 0;
|
|
uint8_t s_wallace_cla24_fa174_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa174_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_15_11 = 0;
|
|
uint8_t s_wallace_cla24_and_14_12 = 0;
|
|
uint8_t s_wallace_cla24_fa175_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa175_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_15_12 = 0;
|
|
uint8_t s_wallace_cla24_and_14_13 = 0;
|
|
uint8_t s_wallace_cla24_fa176_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa176_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_15_13 = 0;
|
|
uint8_t s_wallace_cla24_and_14_14 = 0;
|
|
uint8_t s_wallace_cla24_fa177_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa177_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_15_14 = 0;
|
|
uint8_t s_wallace_cla24_and_14_15 = 0;
|
|
uint8_t s_wallace_cla24_fa178_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa178_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_15_15 = 0;
|
|
uint8_t s_wallace_cla24_and_14_16 = 0;
|
|
uint8_t s_wallace_cla24_fa179_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa179_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_15_16 = 0;
|
|
uint8_t s_wallace_cla24_and_14_17 = 0;
|
|
uint8_t s_wallace_cla24_fa180_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa180_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_15_17 = 0;
|
|
uint8_t s_wallace_cla24_and_14_18 = 0;
|
|
uint8_t s_wallace_cla24_fa181_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa181_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_15_18 = 0;
|
|
uint8_t s_wallace_cla24_and_14_19 = 0;
|
|
uint8_t s_wallace_cla24_fa182_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa182_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_15_19 = 0;
|
|
uint8_t s_wallace_cla24_and_14_20 = 0;
|
|
uint8_t s_wallace_cla24_fa183_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa183_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_15_20 = 0;
|
|
uint8_t s_wallace_cla24_and_14_21 = 0;
|
|
uint8_t s_wallace_cla24_fa184_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa184_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_15_21 = 0;
|
|
uint8_t s_wallace_cla24_and_14_22 = 0;
|
|
uint8_t s_wallace_cla24_fa185_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa185_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_15_22 = 0;
|
|
uint8_t s_wallace_cla24_nand_14_23 = 0;
|
|
uint8_t s_wallace_cla24_fa186_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa186_or0 = 0;
|
|
uint8_t s_wallace_cla24_nand_15_23 = 0;
|
|
uint8_t s_wallace_cla24_fa187_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa187_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa188_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa188_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa189_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa189_or0 = 0;
|
|
uint8_t s_wallace_cla24_ha5_xor0 = 0;
|
|
uint8_t s_wallace_cla24_ha5_and0 = 0;
|
|
uint8_t s_wallace_cla24_fa190_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa190_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa191_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa191_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_0_10 = 0;
|
|
uint8_t s_wallace_cla24_fa192_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa192_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_1_10 = 0;
|
|
uint8_t s_wallace_cla24_and_0_11 = 0;
|
|
uint8_t s_wallace_cla24_fa193_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa193_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_2_10 = 0;
|
|
uint8_t s_wallace_cla24_and_1_11 = 0;
|
|
uint8_t s_wallace_cla24_fa194_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa194_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_3_10 = 0;
|
|
uint8_t s_wallace_cla24_and_2_11 = 0;
|
|
uint8_t s_wallace_cla24_fa195_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa195_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_4_10 = 0;
|
|
uint8_t s_wallace_cla24_and_3_11 = 0;
|
|
uint8_t s_wallace_cla24_fa196_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa196_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_5_10 = 0;
|
|
uint8_t s_wallace_cla24_and_4_11 = 0;
|
|
uint8_t s_wallace_cla24_fa197_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa197_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_6_10 = 0;
|
|
uint8_t s_wallace_cla24_and_5_11 = 0;
|
|
uint8_t s_wallace_cla24_fa198_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa198_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_7_10 = 0;
|
|
uint8_t s_wallace_cla24_and_6_11 = 0;
|
|
uint8_t s_wallace_cla24_fa199_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa199_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_8_10 = 0;
|
|
uint8_t s_wallace_cla24_and_7_11 = 0;
|
|
uint8_t s_wallace_cla24_fa200_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa200_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_9_10 = 0;
|
|
uint8_t s_wallace_cla24_and_8_11 = 0;
|
|
uint8_t s_wallace_cla24_fa201_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa201_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_10_10 = 0;
|
|
uint8_t s_wallace_cla24_and_9_11 = 0;
|
|
uint8_t s_wallace_cla24_fa202_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa202_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_11_10 = 0;
|
|
uint8_t s_wallace_cla24_and_10_11 = 0;
|
|
uint8_t s_wallace_cla24_fa203_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa203_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_12_10 = 0;
|
|
uint8_t s_wallace_cla24_and_11_11 = 0;
|
|
uint8_t s_wallace_cla24_fa204_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa204_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_13_10 = 0;
|
|
uint8_t s_wallace_cla24_and_12_11 = 0;
|
|
uint8_t s_wallace_cla24_fa205_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa205_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_14_10 = 0;
|
|
uint8_t s_wallace_cla24_and_13_11 = 0;
|
|
uint8_t s_wallace_cla24_fa206_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa206_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_13_12 = 0;
|
|
uint8_t s_wallace_cla24_and_12_13 = 0;
|
|
uint8_t s_wallace_cla24_fa207_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa207_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_13_13 = 0;
|
|
uint8_t s_wallace_cla24_and_12_14 = 0;
|
|
uint8_t s_wallace_cla24_fa208_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa208_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_13_14 = 0;
|
|
uint8_t s_wallace_cla24_and_12_15 = 0;
|
|
uint8_t s_wallace_cla24_fa209_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa209_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_13_15 = 0;
|
|
uint8_t s_wallace_cla24_and_12_16 = 0;
|
|
uint8_t s_wallace_cla24_fa210_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa210_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_13_16 = 0;
|
|
uint8_t s_wallace_cla24_and_12_17 = 0;
|
|
uint8_t s_wallace_cla24_fa211_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa211_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_13_17 = 0;
|
|
uint8_t s_wallace_cla24_and_12_18 = 0;
|
|
uint8_t s_wallace_cla24_fa212_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa212_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_13_18 = 0;
|
|
uint8_t s_wallace_cla24_and_12_19 = 0;
|
|
uint8_t s_wallace_cla24_fa213_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa213_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_13_19 = 0;
|
|
uint8_t s_wallace_cla24_and_12_20 = 0;
|
|
uint8_t s_wallace_cla24_fa214_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa214_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_13_20 = 0;
|
|
uint8_t s_wallace_cla24_and_12_21 = 0;
|
|
uint8_t s_wallace_cla24_fa215_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa215_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_13_21 = 0;
|
|
uint8_t s_wallace_cla24_and_12_22 = 0;
|
|
uint8_t s_wallace_cla24_fa216_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa216_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_13_22 = 0;
|
|
uint8_t s_wallace_cla24_nand_12_23 = 0;
|
|
uint8_t s_wallace_cla24_fa217_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa217_or0 = 0;
|
|
uint8_t s_wallace_cla24_nand_13_23 = 0;
|
|
uint8_t s_wallace_cla24_fa218_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa218_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa219_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa219_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa220_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa220_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa221_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa221_or0 = 0;
|
|
uint8_t s_wallace_cla24_ha6_xor0 = 0;
|
|
uint8_t s_wallace_cla24_ha6_and0 = 0;
|
|
uint8_t s_wallace_cla24_fa222_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa222_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa223_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa223_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa224_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa224_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_0_12 = 0;
|
|
uint8_t s_wallace_cla24_fa225_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa225_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_1_12 = 0;
|
|
uint8_t s_wallace_cla24_and_0_13 = 0;
|
|
uint8_t s_wallace_cla24_fa226_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa226_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_2_12 = 0;
|
|
uint8_t s_wallace_cla24_and_1_13 = 0;
|
|
uint8_t s_wallace_cla24_fa227_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa227_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_3_12 = 0;
|
|
uint8_t s_wallace_cla24_and_2_13 = 0;
|
|
uint8_t s_wallace_cla24_fa228_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa228_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_4_12 = 0;
|
|
uint8_t s_wallace_cla24_and_3_13 = 0;
|
|
uint8_t s_wallace_cla24_fa229_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa229_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_5_12 = 0;
|
|
uint8_t s_wallace_cla24_and_4_13 = 0;
|
|
uint8_t s_wallace_cla24_fa230_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa230_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_6_12 = 0;
|
|
uint8_t s_wallace_cla24_and_5_13 = 0;
|
|
uint8_t s_wallace_cla24_fa231_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa231_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_7_12 = 0;
|
|
uint8_t s_wallace_cla24_and_6_13 = 0;
|
|
uint8_t s_wallace_cla24_fa232_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa232_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_8_12 = 0;
|
|
uint8_t s_wallace_cla24_and_7_13 = 0;
|
|
uint8_t s_wallace_cla24_fa233_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa233_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_9_12 = 0;
|
|
uint8_t s_wallace_cla24_and_8_13 = 0;
|
|
uint8_t s_wallace_cla24_fa234_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa234_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_10_12 = 0;
|
|
uint8_t s_wallace_cla24_and_9_13 = 0;
|
|
uint8_t s_wallace_cla24_fa235_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa235_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_11_12 = 0;
|
|
uint8_t s_wallace_cla24_and_10_13 = 0;
|
|
uint8_t s_wallace_cla24_fa236_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa236_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_12_12 = 0;
|
|
uint8_t s_wallace_cla24_and_11_13 = 0;
|
|
uint8_t s_wallace_cla24_fa237_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa237_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_11_14 = 0;
|
|
uint8_t s_wallace_cla24_and_10_15 = 0;
|
|
uint8_t s_wallace_cla24_fa238_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa238_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_11_15 = 0;
|
|
uint8_t s_wallace_cla24_and_10_16 = 0;
|
|
uint8_t s_wallace_cla24_fa239_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa239_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_11_16 = 0;
|
|
uint8_t s_wallace_cla24_and_10_17 = 0;
|
|
uint8_t s_wallace_cla24_fa240_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa240_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_11_17 = 0;
|
|
uint8_t s_wallace_cla24_and_10_18 = 0;
|
|
uint8_t s_wallace_cla24_fa241_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa241_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_11_18 = 0;
|
|
uint8_t s_wallace_cla24_and_10_19 = 0;
|
|
uint8_t s_wallace_cla24_fa242_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa242_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_11_19 = 0;
|
|
uint8_t s_wallace_cla24_and_10_20 = 0;
|
|
uint8_t s_wallace_cla24_fa243_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa243_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_11_20 = 0;
|
|
uint8_t s_wallace_cla24_and_10_21 = 0;
|
|
uint8_t s_wallace_cla24_fa244_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa244_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_11_21 = 0;
|
|
uint8_t s_wallace_cla24_and_10_22 = 0;
|
|
uint8_t s_wallace_cla24_fa245_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa245_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_11_22 = 0;
|
|
uint8_t s_wallace_cla24_nand_10_23 = 0;
|
|
uint8_t s_wallace_cla24_fa246_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa246_or0 = 0;
|
|
uint8_t s_wallace_cla24_nand_11_23 = 0;
|
|
uint8_t s_wallace_cla24_fa247_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa247_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa248_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa248_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa249_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa249_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa250_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa250_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa251_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa251_or0 = 0;
|
|
uint8_t s_wallace_cla24_ha7_xor0 = 0;
|
|
uint8_t s_wallace_cla24_ha7_and0 = 0;
|
|
uint8_t s_wallace_cla24_fa252_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa252_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa253_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa253_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa254_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa254_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa255_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa255_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_0_14 = 0;
|
|
uint8_t s_wallace_cla24_fa256_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa256_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_1_14 = 0;
|
|
uint8_t s_wallace_cla24_and_0_15 = 0;
|
|
uint8_t s_wallace_cla24_fa257_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa257_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_2_14 = 0;
|
|
uint8_t s_wallace_cla24_and_1_15 = 0;
|
|
uint8_t s_wallace_cla24_fa258_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa258_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_3_14 = 0;
|
|
uint8_t s_wallace_cla24_and_2_15 = 0;
|
|
uint8_t s_wallace_cla24_fa259_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa259_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_4_14 = 0;
|
|
uint8_t s_wallace_cla24_and_3_15 = 0;
|
|
uint8_t s_wallace_cla24_fa260_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa260_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_5_14 = 0;
|
|
uint8_t s_wallace_cla24_and_4_15 = 0;
|
|
uint8_t s_wallace_cla24_fa261_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa261_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_6_14 = 0;
|
|
uint8_t s_wallace_cla24_and_5_15 = 0;
|
|
uint8_t s_wallace_cla24_fa262_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa262_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_7_14 = 0;
|
|
uint8_t s_wallace_cla24_and_6_15 = 0;
|
|
uint8_t s_wallace_cla24_fa263_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa263_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_8_14 = 0;
|
|
uint8_t s_wallace_cla24_and_7_15 = 0;
|
|
uint8_t s_wallace_cla24_fa264_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa264_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_9_14 = 0;
|
|
uint8_t s_wallace_cla24_and_8_15 = 0;
|
|
uint8_t s_wallace_cla24_fa265_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa265_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_10_14 = 0;
|
|
uint8_t s_wallace_cla24_and_9_15 = 0;
|
|
uint8_t s_wallace_cla24_fa266_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa266_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_9_16 = 0;
|
|
uint8_t s_wallace_cla24_and_8_17 = 0;
|
|
uint8_t s_wallace_cla24_fa267_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa267_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_9_17 = 0;
|
|
uint8_t s_wallace_cla24_and_8_18 = 0;
|
|
uint8_t s_wallace_cla24_fa268_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa268_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_9_18 = 0;
|
|
uint8_t s_wallace_cla24_and_8_19 = 0;
|
|
uint8_t s_wallace_cla24_fa269_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa269_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_9_19 = 0;
|
|
uint8_t s_wallace_cla24_and_8_20 = 0;
|
|
uint8_t s_wallace_cla24_fa270_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa270_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_9_20 = 0;
|
|
uint8_t s_wallace_cla24_and_8_21 = 0;
|
|
uint8_t s_wallace_cla24_fa271_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa271_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_9_21 = 0;
|
|
uint8_t s_wallace_cla24_and_8_22 = 0;
|
|
uint8_t s_wallace_cla24_fa272_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa272_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_9_22 = 0;
|
|
uint8_t s_wallace_cla24_nand_8_23 = 0;
|
|
uint8_t s_wallace_cla24_fa273_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa273_or0 = 0;
|
|
uint8_t s_wallace_cla24_nand_9_23 = 0;
|
|
uint8_t s_wallace_cla24_fa274_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa274_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa275_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa275_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa276_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa276_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa277_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa277_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa278_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa278_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa279_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa279_or0 = 0;
|
|
uint8_t s_wallace_cla24_ha8_xor0 = 0;
|
|
uint8_t s_wallace_cla24_ha8_and0 = 0;
|
|
uint8_t s_wallace_cla24_fa280_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa280_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa281_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa281_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa282_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa282_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa283_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa283_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa284_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa284_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_0_16 = 0;
|
|
uint8_t s_wallace_cla24_fa285_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa285_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_1_16 = 0;
|
|
uint8_t s_wallace_cla24_and_0_17 = 0;
|
|
uint8_t s_wallace_cla24_fa286_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa286_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_2_16 = 0;
|
|
uint8_t s_wallace_cla24_and_1_17 = 0;
|
|
uint8_t s_wallace_cla24_fa287_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa287_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_3_16 = 0;
|
|
uint8_t s_wallace_cla24_and_2_17 = 0;
|
|
uint8_t s_wallace_cla24_fa288_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa288_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_4_16 = 0;
|
|
uint8_t s_wallace_cla24_and_3_17 = 0;
|
|
uint8_t s_wallace_cla24_fa289_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa289_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_5_16 = 0;
|
|
uint8_t s_wallace_cla24_and_4_17 = 0;
|
|
uint8_t s_wallace_cla24_fa290_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa290_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_6_16 = 0;
|
|
uint8_t s_wallace_cla24_and_5_17 = 0;
|
|
uint8_t s_wallace_cla24_fa291_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa291_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_7_16 = 0;
|
|
uint8_t s_wallace_cla24_and_6_17 = 0;
|
|
uint8_t s_wallace_cla24_fa292_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa292_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_8_16 = 0;
|
|
uint8_t s_wallace_cla24_and_7_17 = 0;
|
|
uint8_t s_wallace_cla24_fa293_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa293_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_7_18 = 0;
|
|
uint8_t s_wallace_cla24_and_6_19 = 0;
|
|
uint8_t s_wallace_cla24_fa294_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa294_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_7_19 = 0;
|
|
uint8_t s_wallace_cla24_and_6_20 = 0;
|
|
uint8_t s_wallace_cla24_fa295_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa295_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_7_20 = 0;
|
|
uint8_t s_wallace_cla24_and_6_21 = 0;
|
|
uint8_t s_wallace_cla24_fa296_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa296_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_7_21 = 0;
|
|
uint8_t s_wallace_cla24_and_6_22 = 0;
|
|
uint8_t s_wallace_cla24_fa297_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa297_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_7_22 = 0;
|
|
uint8_t s_wallace_cla24_nand_6_23 = 0;
|
|
uint8_t s_wallace_cla24_fa298_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa298_or0 = 0;
|
|
uint8_t s_wallace_cla24_nand_7_23 = 0;
|
|
uint8_t s_wallace_cla24_fa299_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa299_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa300_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa300_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa301_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa301_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa302_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa302_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa303_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa303_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa304_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa304_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa305_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa305_or0 = 0;
|
|
uint8_t s_wallace_cla24_ha9_xor0 = 0;
|
|
uint8_t s_wallace_cla24_ha9_and0 = 0;
|
|
uint8_t s_wallace_cla24_fa306_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa306_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa307_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa307_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa308_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa308_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa309_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa309_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa310_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa310_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa311_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa311_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_0_18 = 0;
|
|
uint8_t s_wallace_cla24_fa312_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa312_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_1_18 = 0;
|
|
uint8_t s_wallace_cla24_and_0_19 = 0;
|
|
uint8_t s_wallace_cla24_fa313_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa313_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_2_18 = 0;
|
|
uint8_t s_wallace_cla24_and_1_19 = 0;
|
|
uint8_t s_wallace_cla24_fa314_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa314_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_3_18 = 0;
|
|
uint8_t s_wallace_cla24_and_2_19 = 0;
|
|
uint8_t s_wallace_cla24_fa315_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa315_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_4_18 = 0;
|
|
uint8_t s_wallace_cla24_and_3_19 = 0;
|
|
uint8_t s_wallace_cla24_fa316_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa316_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_5_18 = 0;
|
|
uint8_t s_wallace_cla24_and_4_19 = 0;
|
|
uint8_t s_wallace_cla24_fa317_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa317_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_6_18 = 0;
|
|
uint8_t s_wallace_cla24_and_5_19 = 0;
|
|
uint8_t s_wallace_cla24_fa318_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa318_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_5_20 = 0;
|
|
uint8_t s_wallace_cla24_and_4_21 = 0;
|
|
uint8_t s_wallace_cla24_fa319_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa319_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_5_21 = 0;
|
|
uint8_t s_wallace_cla24_and_4_22 = 0;
|
|
uint8_t s_wallace_cla24_fa320_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa320_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_5_22 = 0;
|
|
uint8_t s_wallace_cla24_nand_4_23 = 0;
|
|
uint8_t s_wallace_cla24_fa321_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa321_or0 = 0;
|
|
uint8_t s_wallace_cla24_nand_5_23 = 0;
|
|
uint8_t s_wallace_cla24_fa322_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa322_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa323_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa323_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa324_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa324_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa325_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa325_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa326_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa326_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa327_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa327_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa328_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa328_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa329_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa329_or0 = 0;
|
|
uint8_t s_wallace_cla24_ha10_xor0 = 0;
|
|
uint8_t s_wallace_cla24_ha10_and0 = 0;
|
|
uint8_t s_wallace_cla24_fa330_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa330_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa331_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa331_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa332_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa332_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa333_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa333_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa334_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa334_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa335_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa335_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa336_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa336_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_0_20 = 0;
|
|
uint8_t s_wallace_cla24_fa337_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa337_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_1_20 = 0;
|
|
uint8_t s_wallace_cla24_and_0_21 = 0;
|
|
uint8_t s_wallace_cla24_fa338_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa338_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_2_20 = 0;
|
|
uint8_t s_wallace_cla24_and_1_21 = 0;
|
|
uint8_t s_wallace_cla24_fa339_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa339_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_3_20 = 0;
|
|
uint8_t s_wallace_cla24_and_2_21 = 0;
|
|
uint8_t s_wallace_cla24_fa340_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa340_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_4_20 = 0;
|
|
uint8_t s_wallace_cla24_and_3_21 = 0;
|
|
uint8_t s_wallace_cla24_fa341_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa341_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_3_22 = 0;
|
|
uint8_t s_wallace_cla24_nand_2_23 = 0;
|
|
uint8_t s_wallace_cla24_fa342_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa342_or0 = 0;
|
|
uint8_t s_wallace_cla24_nand_3_23 = 0;
|
|
uint8_t s_wallace_cla24_fa343_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa343_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa344_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa344_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa345_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa345_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa346_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa346_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa347_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa347_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa348_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa348_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa349_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa349_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa350_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa350_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa351_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa351_or0 = 0;
|
|
uint8_t s_wallace_cla24_ha11_xor0 = 0;
|
|
uint8_t s_wallace_cla24_ha11_and0 = 0;
|
|
uint8_t s_wallace_cla24_fa352_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa352_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa353_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa353_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa354_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa354_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa355_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa355_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa356_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa356_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa357_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa357_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa358_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa358_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa359_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa359_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_0_22 = 0;
|
|
uint8_t s_wallace_cla24_fa360_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa360_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_1_22 = 0;
|
|
uint8_t s_wallace_cla24_nand_0_23 = 0;
|
|
uint8_t s_wallace_cla24_fa361_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa361_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_2_22 = 0;
|
|
uint8_t s_wallace_cla24_nand_1_23 = 0;
|
|
uint8_t s_wallace_cla24_fa362_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa362_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa363_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa363_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa364_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa364_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa365_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa365_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa366_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa366_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa367_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa367_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa368_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa368_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa369_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa369_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa370_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa370_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa371_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa371_or0 = 0;
|
|
uint8_t s_wallace_cla24_ha12_xor0 = 0;
|
|
uint8_t s_wallace_cla24_ha12_and0 = 0;
|
|
uint8_t s_wallace_cla24_fa372_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa372_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa373_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa373_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa374_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa374_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa375_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa375_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa376_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa376_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa377_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa377_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa378_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa378_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa379_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa379_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa380_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa380_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa381_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa381_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa382_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa382_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa383_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa383_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa384_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa384_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa385_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa385_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa386_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa386_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa387_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa387_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa388_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa388_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa389_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa389_or0 = 0;
|
|
uint8_t s_wallace_cla24_ha13_xor0 = 0;
|
|
uint8_t s_wallace_cla24_ha13_and0 = 0;
|
|
uint8_t s_wallace_cla24_fa390_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa390_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa391_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa391_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa392_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa392_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa393_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa393_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa394_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa394_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa395_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa395_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa396_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa396_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa397_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa397_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa398_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa398_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa399_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa399_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa400_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa400_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa401_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa401_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa402_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa402_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa403_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa403_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa404_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa404_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa405_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa405_or0 = 0;
|
|
uint8_t s_wallace_cla24_ha14_xor0 = 0;
|
|
uint8_t s_wallace_cla24_ha14_and0 = 0;
|
|
uint8_t s_wallace_cla24_fa406_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa406_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa407_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa407_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa408_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa408_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa409_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa409_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa410_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa410_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa411_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa411_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa412_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa412_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa413_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa413_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa414_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa414_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa415_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa415_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa416_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa416_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa417_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa417_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa418_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa418_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa419_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa419_or0 = 0;
|
|
uint8_t s_wallace_cla24_ha15_xor0 = 0;
|
|
uint8_t s_wallace_cla24_ha15_and0 = 0;
|
|
uint8_t s_wallace_cla24_fa420_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa420_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa421_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa421_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa422_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa422_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa423_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa423_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa424_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa424_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa425_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa425_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa426_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa426_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa427_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa427_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa428_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa428_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa429_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa429_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa430_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa430_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa431_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa431_or0 = 0;
|
|
uint8_t s_wallace_cla24_ha16_xor0 = 0;
|
|
uint8_t s_wallace_cla24_ha16_and0 = 0;
|
|
uint8_t s_wallace_cla24_fa432_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa432_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa433_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa433_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa434_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa434_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa435_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa435_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa436_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa436_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa437_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa437_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa438_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa438_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa439_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa439_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa440_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa440_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa441_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa441_or0 = 0;
|
|
uint8_t s_wallace_cla24_ha17_xor0 = 0;
|
|
uint8_t s_wallace_cla24_ha17_and0 = 0;
|
|
uint8_t s_wallace_cla24_fa442_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa442_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa443_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa443_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa444_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa444_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa445_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa445_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa446_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa446_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa447_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa447_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa448_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa448_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa449_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa449_or0 = 0;
|
|
uint8_t s_wallace_cla24_ha18_xor0 = 0;
|
|
uint8_t s_wallace_cla24_ha18_and0 = 0;
|
|
uint8_t s_wallace_cla24_fa450_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa450_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa451_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa451_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa452_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa452_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa453_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa453_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa454_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa454_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa455_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa455_or0 = 0;
|
|
uint8_t s_wallace_cla24_ha19_xor0 = 0;
|
|
uint8_t s_wallace_cla24_ha19_and0 = 0;
|
|
uint8_t s_wallace_cla24_fa456_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa456_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa457_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa457_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa458_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa458_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa459_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa459_or0 = 0;
|
|
uint8_t s_wallace_cla24_ha20_xor0 = 0;
|
|
uint8_t s_wallace_cla24_ha20_and0 = 0;
|
|
uint8_t s_wallace_cla24_fa460_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa460_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa461_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa461_or0 = 0;
|
|
uint8_t s_wallace_cla24_ha21_xor0 = 0;
|
|
uint8_t s_wallace_cla24_ha21_and0 = 0;
|
|
uint8_t s_wallace_cla24_fa462_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa462_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa463_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa463_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa464_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa464_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa465_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa465_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa466_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa466_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa467_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa467_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa468_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa468_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa469_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa469_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa470_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa470_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa471_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa471_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa472_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa472_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa473_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa473_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa474_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa474_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa475_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa475_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa476_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa476_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa477_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa477_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa478_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa478_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa479_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa479_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa480_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa480_or0 = 0;
|
|
uint8_t s_wallace_cla24_fa481_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa481_or0 = 0;
|
|
uint8_t s_wallace_cla24_nand_21_23 = 0;
|
|
uint8_t s_wallace_cla24_fa482_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa482_or0 = 0;
|
|
uint8_t s_wallace_cla24_nand_23_22 = 0;
|
|
uint8_t s_wallace_cla24_fa483_xor1 = 0;
|
|
uint8_t s_wallace_cla24_fa483_or0 = 0;
|
|
uint8_t s_wallace_cla24_and_0_0 = 0;
|
|
uint8_t s_wallace_cla24_and_1_0 = 0;
|
|
uint8_t s_wallace_cla24_and_0_2 = 0;
|
|
uint8_t s_wallace_cla24_nand_22_23 = 0;
|
|
uint8_t s_wallace_cla24_and_0_1 = 0;
|
|
uint8_t s_wallace_cla24_and_23_23 = 0;
|
|
uint64_t s_wallace_cla24_u_cla46_a = 0;
|
|
uint64_t s_wallace_cla24_u_cla46_b = 0;
|
|
uint64_t s_wallace_cla24_u_cla46_out = 0;
|
|
uint8_t s_wallace_cla24_xor0 = 0;
|
|
|
|
s_wallace_cla24_and_2_0 = and_gate(((a >> 2) & 0x01), ((b >> 0) & 0x01));
|
|
s_wallace_cla24_and_1_1 = and_gate(((a >> 1) & 0x01), ((b >> 1) & 0x01));
|
|
s_wallace_cla24_ha0_xor0 = (ha(((s_wallace_cla24_and_2_0 >> 0) & 0x01), ((s_wallace_cla24_and_1_1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_ha0_and0 = (ha(((s_wallace_cla24_and_2_0 >> 0) & 0x01), ((s_wallace_cla24_and_1_1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_3_0 = and_gate(((a >> 3) & 0x01), ((b >> 0) & 0x01));
|
|
s_wallace_cla24_and_2_1 = and_gate(((a >> 2) & 0x01), ((b >> 1) & 0x01));
|
|
s_wallace_cla24_fa0_xor1 = (fa(((s_wallace_cla24_ha0_and0 >> 0) & 0x01), ((s_wallace_cla24_and_3_0 >> 0) & 0x01), ((s_wallace_cla24_and_2_1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa0_or0 = (fa(((s_wallace_cla24_ha0_and0 >> 0) & 0x01), ((s_wallace_cla24_and_3_0 >> 0) & 0x01), ((s_wallace_cla24_and_2_1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_4_0 = and_gate(((a >> 4) & 0x01), ((b >> 0) & 0x01));
|
|
s_wallace_cla24_and_3_1 = and_gate(((a >> 3) & 0x01), ((b >> 1) & 0x01));
|
|
s_wallace_cla24_fa1_xor1 = (fa(((s_wallace_cla24_fa0_or0 >> 0) & 0x01), ((s_wallace_cla24_and_4_0 >> 0) & 0x01), ((s_wallace_cla24_and_3_1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa1_or0 = (fa(((s_wallace_cla24_fa0_or0 >> 0) & 0x01), ((s_wallace_cla24_and_4_0 >> 0) & 0x01), ((s_wallace_cla24_and_3_1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_5_0 = and_gate(((a >> 5) & 0x01), ((b >> 0) & 0x01));
|
|
s_wallace_cla24_and_4_1 = and_gate(((a >> 4) & 0x01), ((b >> 1) & 0x01));
|
|
s_wallace_cla24_fa2_xor1 = (fa(((s_wallace_cla24_fa1_or0 >> 0) & 0x01), ((s_wallace_cla24_and_5_0 >> 0) & 0x01), ((s_wallace_cla24_and_4_1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa2_or0 = (fa(((s_wallace_cla24_fa1_or0 >> 0) & 0x01), ((s_wallace_cla24_and_5_0 >> 0) & 0x01), ((s_wallace_cla24_and_4_1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_6_0 = and_gate(((a >> 6) & 0x01), ((b >> 0) & 0x01));
|
|
s_wallace_cla24_and_5_1 = and_gate(((a >> 5) & 0x01), ((b >> 1) & 0x01));
|
|
s_wallace_cla24_fa3_xor1 = (fa(((s_wallace_cla24_fa2_or0 >> 0) & 0x01), ((s_wallace_cla24_and_6_0 >> 0) & 0x01), ((s_wallace_cla24_and_5_1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa3_or0 = (fa(((s_wallace_cla24_fa2_or0 >> 0) & 0x01), ((s_wallace_cla24_and_6_0 >> 0) & 0x01), ((s_wallace_cla24_and_5_1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_7_0 = and_gate(((a >> 7) & 0x01), ((b >> 0) & 0x01));
|
|
s_wallace_cla24_and_6_1 = and_gate(((a >> 6) & 0x01), ((b >> 1) & 0x01));
|
|
s_wallace_cla24_fa4_xor1 = (fa(((s_wallace_cla24_fa3_or0 >> 0) & 0x01), ((s_wallace_cla24_and_7_0 >> 0) & 0x01), ((s_wallace_cla24_and_6_1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa4_or0 = (fa(((s_wallace_cla24_fa3_or0 >> 0) & 0x01), ((s_wallace_cla24_and_7_0 >> 0) & 0x01), ((s_wallace_cla24_and_6_1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_8_0 = and_gate(((a >> 8) & 0x01), ((b >> 0) & 0x01));
|
|
s_wallace_cla24_and_7_1 = and_gate(((a >> 7) & 0x01), ((b >> 1) & 0x01));
|
|
s_wallace_cla24_fa5_xor1 = (fa(((s_wallace_cla24_fa4_or0 >> 0) & 0x01), ((s_wallace_cla24_and_8_0 >> 0) & 0x01), ((s_wallace_cla24_and_7_1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa5_or0 = (fa(((s_wallace_cla24_fa4_or0 >> 0) & 0x01), ((s_wallace_cla24_and_8_0 >> 0) & 0x01), ((s_wallace_cla24_and_7_1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_9_0 = and_gate(((a >> 9) & 0x01), ((b >> 0) & 0x01));
|
|
s_wallace_cla24_and_8_1 = and_gate(((a >> 8) & 0x01), ((b >> 1) & 0x01));
|
|
s_wallace_cla24_fa6_xor1 = (fa(((s_wallace_cla24_fa5_or0 >> 0) & 0x01), ((s_wallace_cla24_and_9_0 >> 0) & 0x01), ((s_wallace_cla24_and_8_1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa6_or0 = (fa(((s_wallace_cla24_fa5_or0 >> 0) & 0x01), ((s_wallace_cla24_and_9_0 >> 0) & 0x01), ((s_wallace_cla24_and_8_1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_10_0 = and_gate(((a >> 10) & 0x01), ((b >> 0) & 0x01));
|
|
s_wallace_cla24_and_9_1 = and_gate(((a >> 9) & 0x01), ((b >> 1) & 0x01));
|
|
s_wallace_cla24_fa7_xor1 = (fa(((s_wallace_cla24_fa6_or0 >> 0) & 0x01), ((s_wallace_cla24_and_10_0 >> 0) & 0x01), ((s_wallace_cla24_and_9_1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa7_or0 = (fa(((s_wallace_cla24_fa6_or0 >> 0) & 0x01), ((s_wallace_cla24_and_10_0 >> 0) & 0x01), ((s_wallace_cla24_and_9_1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_11_0 = and_gate(((a >> 11) & 0x01), ((b >> 0) & 0x01));
|
|
s_wallace_cla24_and_10_1 = and_gate(((a >> 10) & 0x01), ((b >> 1) & 0x01));
|
|
s_wallace_cla24_fa8_xor1 = (fa(((s_wallace_cla24_fa7_or0 >> 0) & 0x01), ((s_wallace_cla24_and_11_0 >> 0) & 0x01), ((s_wallace_cla24_and_10_1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa8_or0 = (fa(((s_wallace_cla24_fa7_or0 >> 0) & 0x01), ((s_wallace_cla24_and_11_0 >> 0) & 0x01), ((s_wallace_cla24_and_10_1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_12_0 = and_gate(((a >> 12) & 0x01), ((b >> 0) & 0x01));
|
|
s_wallace_cla24_and_11_1 = and_gate(((a >> 11) & 0x01), ((b >> 1) & 0x01));
|
|
s_wallace_cla24_fa9_xor1 = (fa(((s_wallace_cla24_fa8_or0 >> 0) & 0x01), ((s_wallace_cla24_and_12_0 >> 0) & 0x01), ((s_wallace_cla24_and_11_1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa9_or0 = (fa(((s_wallace_cla24_fa8_or0 >> 0) & 0x01), ((s_wallace_cla24_and_12_0 >> 0) & 0x01), ((s_wallace_cla24_and_11_1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_13_0 = and_gate(((a >> 13) & 0x01), ((b >> 0) & 0x01));
|
|
s_wallace_cla24_and_12_1 = and_gate(((a >> 12) & 0x01), ((b >> 1) & 0x01));
|
|
s_wallace_cla24_fa10_xor1 = (fa(((s_wallace_cla24_fa9_or0 >> 0) & 0x01), ((s_wallace_cla24_and_13_0 >> 0) & 0x01), ((s_wallace_cla24_and_12_1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa10_or0 = (fa(((s_wallace_cla24_fa9_or0 >> 0) & 0x01), ((s_wallace_cla24_and_13_0 >> 0) & 0x01), ((s_wallace_cla24_and_12_1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_14_0 = and_gate(((a >> 14) & 0x01), ((b >> 0) & 0x01));
|
|
s_wallace_cla24_and_13_1 = and_gate(((a >> 13) & 0x01), ((b >> 1) & 0x01));
|
|
s_wallace_cla24_fa11_xor1 = (fa(((s_wallace_cla24_fa10_or0 >> 0) & 0x01), ((s_wallace_cla24_and_14_0 >> 0) & 0x01), ((s_wallace_cla24_and_13_1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa11_or0 = (fa(((s_wallace_cla24_fa10_or0 >> 0) & 0x01), ((s_wallace_cla24_and_14_0 >> 0) & 0x01), ((s_wallace_cla24_and_13_1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_15_0 = and_gate(((a >> 15) & 0x01), ((b >> 0) & 0x01));
|
|
s_wallace_cla24_and_14_1 = and_gate(((a >> 14) & 0x01), ((b >> 1) & 0x01));
|
|
s_wallace_cla24_fa12_xor1 = (fa(((s_wallace_cla24_fa11_or0 >> 0) & 0x01), ((s_wallace_cla24_and_15_0 >> 0) & 0x01), ((s_wallace_cla24_and_14_1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa12_or0 = (fa(((s_wallace_cla24_fa11_or0 >> 0) & 0x01), ((s_wallace_cla24_and_15_0 >> 0) & 0x01), ((s_wallace_cla24_and_14_1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_16_0 = and_gate(((a >> 16) & 0x01), ((b >> 0) & 0x01));
|
|
s_wallace_cla24_and_15_1 = and_gate(((a >> 15) & 0x01), ((b >> 1) & 0x01));
|
|
s_wallace_cla24_fa13_xor1 = (fa(((s_wallace_cla24_fa12_or0 >> 0) & 0x01), ((s_wallace_cla24_and_16_0 >> 0) & 0x01), ((s_wallace_cla24_and_15_1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa13_or0 = (fa(((s_wallace_cla24_fa12_or0 >> 0) & 0x01), ((s_wallace_cla24_and_16_0 >> 0) & 0x01), ((s_wallace_cla24_and_15_1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_17_0 = and_gate(((a >> 17) & 0x01), ((b >> 0) & 0x01));
|
|
s_wallace_cla24_and_16_1 = and_gate(((a >> 16) & 0x01), ((b >> 1) & 0x01));
|
|
s_wallace_cla24_fa14_xor1 = (fa(((s_wallace_cla24_fa13_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_0 >> 0) & 0x01), ((s_wallace_cla24_and_16_1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa14_or0 = (fa(((s_wallace_cla24_fa13_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_0 >> 0) & 0x01), ((s_wallace_cla24_and_16_1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_18_0 = and_gate(((a >> 18) & 0x01), ((b >> 0) & 0x01));
|
|
s_wallace_cla24_and_17_1 = and_gate(((a >> 17) & 0x01), ((b >> 1) & 0x01));
|
|
s_wallace_cla24_fa15_xor1 = (fa(((s_wallace_cla24_fa14_or0 >> 0) & 0x01), ((s_wallace_cla24_and_18_0 >> 0) & 0x01), ((s_wallace_cla24_and_17_1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa15_or0 = (fa(((s_wallace_cla24_fa14_or0 >> 0) & 0x01), ((s_wallace_cla24_and_18_0 >> 0) & 0x01), ((s_wallace_cla24_and_17_1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_19_0 = and_gate(((a >> 19) & 0x01), ((b >> 0) & 0x01));
|
|
s_wallace_cla24_and_18_1 = and_gate(((a >> 18) & 0x01), ((b >> 1) & 0x01));
|
|
s_wallace_cla24_fa16_xor1 = (fa(((s_wallace_cla24_fa15_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_0 >> 0) & 0x01), ((s_wallace_cla24_and_18_1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa16_or0 = (fa(((s_wallace_cla24_fa15_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_0 >> 0) & 0x01), ((s_wallace_cla24_and_18_1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_20_0 = and_gate(((a >> 20) & 0x01), ((b >> 0) & 0x01));
|
|
s_wallace_cla24_and_19_1 = and_gate(((a >> 19) & 0x01), ((b >> 1) & 0x01));
|
|
s_wallace_cla24_fa17_xor1 = (fa(((s_wallace_cla24_fa16_or0 >> 0) & 0x01), ((s_wallace_cla24_and_20_0 >> 0) & 0x01), ((s_wallace_cla24_and_19_1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa17_or0 = (fa(((s_wallace_cla24_fa16_or0 >> 0) & 0x01), ((s_wallace_cla24_and_20_0 >> 0) & 0x01), ((s_wallace_cla24_and_19_1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_21_0 = and_gate(((a >> 21) & 0x01), ((b >> 0) & 0x01));
|
|
s_wallace_cla24_and_20_1 = and_gate(((a >> 20) & 0x01), ((b >> 1) & 0x01));
|
|
s_wallace_cla24_fa18_xor1 = (fa(((s_wallace_cla24_fa17_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_0 >> 0) & 0x01), ((s_wallace_cla24_and_20_1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa18_or0 = (fa(((s_wallace_cla24_fa17_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_0 >> 0) & 0x01), ((s_wallace_cla24_and_20_1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_22_0 = and_gate(((a >> 22) & 0x01), ((b >> 0) & 0x01));
|
|
s_wallace_cla24_and_21_1 = and_gate(((a >> 21) & 0x01), ((b >> 1) & 0x01));
|
|
s_wallace_cla24_fa19_xor1 = (fa(((s_wallace_cla24_fa18_or0 >> 0) & 0x01), ((s_wallace_cla24_and_22_0 >> 0) & 0x01), ((s_wallace_cla24_and_21_1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa19_or0 = (fa(((s_wallace_cla24_fa18_or0 >> 0) & 0x01), ((s_wallace_cla24_and_22_0 >> 0) & 0x01), ((s_wallace_cla24_and_21_1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_nand_23_0 = nand_gate(((a >> 23) & 0x01), ((b >> 0) & 0x01));
|
|
s_wallace_cla24_and_22_1 = and_gate(((a >> 22) & 0x01), ((b >> 1) & 0x01));
|
|
s_wallace_cla24_fa20_xor1 = (fa(((s_wallace_cla24_fa19_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_0 >> 0) & 0x01), ((s_wallace_cla24_and_22_1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa20_or0 = (fa(((s_wallace_cla24_fa19_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_0 >> 0) & 0x01), ((s_wallace_cla24_and_22_1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_nand_23_1 = nand_gate(((a >> 23) & 0x01), ((b >> 1) & 0x01));
|
|
s_wallace_cla24_fa21_xor1 = (fa(((s_wallace_cla24_fa20_or0 >> 0) & 0x01), (0x01), ((s_wallace_cla24_nand_23_1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa21_or0 = (fa(((s_wallace_cla24_fa20_or0 >> 0) & 0x01), (0x01), ((s_wallace_cla24_nand_23_1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_nand_23_2 = nand_gate(((a >> 23) & 0x01), ((b >> 2) & 0x01));
|
|
s_wallace_cla24_and_22_3 = and_gate(((a >> 22) & 0x01), ((b >> 3) & 0x01));
|
|
s_wallace_cla24_fa22_xor1 = (fa(((s_wallace_cla24_fa21_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_2 >> 0) & 0x01), ((s_wallace_cla24_and_22_3 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa22_or0 = (fa(((s_wallace_cla24_fa21_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_2 >> 0) & 0x01), ((s_wallace_cla24_and_22_3 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_nand_23_3 = nand_gate(((a >> 23) & 0x01), ((b >> 3) & 0x01));
|
|
s_wallace_cla24_and_22_4 = and_gate(((a >> 22) & 0x01), ((b >> 4) & 0x01));
|
|
s_wallace_cla24_fa23_xor1 = (fa(((s_wallace_cla24_fa22_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_3 >> 0) & 0x01), ((s_wallace_cla24_and_22_4 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa23_or0 = (fa(((s_wallace_cla24_fa22_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_3 >> 0) & 0x01), ((s_wallace_cla24_and_22_4 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_nand_23_4 = nand_gate(((a >> 23) & 0x01), ((b >> 4) & 0x01));
|
|
s_wallace_cla24_and_22_5 = and_gate(((a >> 22) & 0x01), ((b >> 5) & 0x01));
|
|
s_wallace_cla24_fa24_xor1 = (fa(((s_wallace_cla24_fa23_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_4 >> 0) & 0x01), ((s_wallace_cla24_and_22_5 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa24_or0 = (fa(((s_wallace_cla24_fa23_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_4 >> 0) & 0x01), ((s_wallace_cla24_and_22_5 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_nand_23_5 = nand_gate(((a >> 23) & 0x01), ((b >> 5) & 0x01));
|
|
s_wallace_cla24_and_22_6 = and_gate(((a >> 22) & 0x01), ((b >> 6) & 0x01));
|
|
s_wallace_cla24_fa25_xor1 = (fa(((s_wallace_cla24_fa24_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_5 >> 0) & 0x01), ((s_wallace_cla24_and_22_6 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa25_or0 = (fa(((s_wallace_cla24_fa24_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_5 >> 0) & 0x01), ((s_wallace_cla24_and_22_6 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_nand_23_6 = nand_gate(((a >> 23) & 0x01), ((b >> 6) & 0x01));
|
|
s_wallace_cla24_and_22_7 = and_gate(((a >> 22) & 0x01), ((b >> 7) & 0x01));
|
|
s_wallace_cla24_fa26_xor1 = (fa(((s_wallace_cla24_fa25_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_6 >> 0) & 0x01), ((s_wallace_cla24_and_22_7 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa26_or0 = (fa(((s_wallace_cla24_fa25_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_6 >> 0) & 0x01), ((s_wallace_cla24_and_22_7 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_nand_23_7 = nand_gate(((a >> 23) & 0x01), ((b >> 7) & 0x01));
|
|
s_wallace_cla24_and_22_8 = and_gate(((a >> 22) & 0x01), ((b >> 8) & 0x01));
|
|
s_wallace_cla24_fa27_xor1 = (fa(((s_wallace_cla24_fa26_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_7 >> 0) & 0x01), ((s_wallace_cla24_and_22_8 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa27_or0 = (fa(((s_wallace_cla24_fa26_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_7 >> 0) & 0x01), ((s_wallace_cla24_and_22_8 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_nand_23_8 = nand_gate(((a >> 23) & 0x01), ((b >> 8) & 0x01));
|
|
s_wallace_cla24_and_22_9 = and_gate(((a >> 22) & 0x01), ((b >> 9) & 0x01));
|
|
s_wallace_cla24_fa28_xor1 = (fa(((s_wallace_cla24_fa27_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_8 >> 0) & 0x01), ((s_wallace_cla24_and_22_9 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa28_or0 = (fa(((s_wallace_cla24_fa27_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_8 >> 0) & 0x01), ((s_wallace_cla24_and_22_9 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_nand_23_9 = nand_gate(((a >> 23) & 0x01), ((b >> 9) & 0x01));
|
|
s_wallace_cla24_and_22_10 = and_gate(((a >> 22) & 0x01), ((b >> 10) & 0x01));
|
|
s_wallace_cla24_fa29_xor1 = (fa(((s_wallace_cla24_fa28_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_9 >> 0) & 0x01), ((s_wallace_cla24_and_22_10 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa29_or0 = (fa(((s_wallace_cla24_fa28_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_9 >> 0) & 0x01), ((s_wallace_cla24_and_22_10 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_nand_23_10 = nand_gate(((a >> 23) & 0x01), ((b >> 10) & 0x01));
|
|
s_wallace_cla24_and_22_11 = and_gate(((a >> 22) & 0x01), ((b >> 11) & 0x01));
|
|
s_wallace_cla24_fa30_xor1 = (fa(((s_wallace_cla24_fa29_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_10 >> 0) & 0x01), ((s_wallace_cla24_and_22_11 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa30_or0 = (fa(((s_wallace_cla24_fa29_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_10 >> 0) & 0x01), ((s_wallace_cla24_and_22_11 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_nand_23_11 = nand_gate(((a >> 23) & 0x01), ((b >> 11) & 0x01));
|
|
s_wallace_cla24_and_22_12 = and_gate(((a >> 22) & 0x01), ((b >> 12) & 0x01));
|
|
s_wallace_cla24_fa31_xor1 = (fa(((s_wallace_cla24_fa30_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_11 >> 0) & 0x01), ((s_wallace_cla24_and_22_12 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa31_or0 = (fa(((s_wallace_cla24_fa30_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_11 >> 0) & 0x01), ((s_wallace_cla24_and_22_12 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_nand_23_12 = nand_gate(((a >> 23) & 0x01), ((b >> 12) & 0x01));
|
|
s_wallace_cla24_and_22_13 = and_gate(((a >> 22) & 0x01), ((b >> 13) & 0x01));
|
|
s_wallace_cla24_fa32_xor1 = (fa(((s_wallace_cla24_fa31_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_12 >> 0) & 0x01), ((s_wallace_cla24_and_22_13 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa32_or0 = (fa(((s_wallace_cla24_fa31_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_12 >> 0) & 0x01), ((s_wallace_cla24_and_22_13 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_nand_23_13 = nand_gate(((a >> 23) & 0x01), ((b >> 13) & 0x01));
|
|
s_wallace_cla24_and_22_14 = and_gate(((a >> 22) & 0x01), ((b >> 14) & 0x01));
|
|
s_wallace_cla24_fa33_xor1 = (fa(((s_wallace_cla24_fa32_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_13 >> 0) & 0x01), ((s_wallace_cla24_and_22_14 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa33_or0 = (fa(((s_wallace_cla24_fa32_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_13 >> 0) & 0x01), ((s_wallace_cla24_and_22_14 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_nand_23_14 = nand_gate(((a >> 23) & 0x01), ((b >> 14) & 0x01));
|
|
s_wallace_cla24_and_22_15 = and_gate(((a >> 22) & 0x01), ((b >> 15) & 0x01));
|
|
s_wallace_cla24_fa34_xor1 = (fa(((s_wallace_cla24_fa33_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_14 >> 0) & 0x01), ((s_wallace_cla24_and_22_15 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa34_or0 = (fa(((s_wallace_cla24_fa33_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_14 >> 0) & 0x01), ((s_wallace_cla24_and_22_15 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_nand_23_15 = nand_gate(((a >> 23) & 0x01), ((b >> 15) & 0x01));
|
|
s_wallace_cla24_and_22_16 = and_gate(((a >> 22) & 0x01), ((b >> 16) & 0x01));
|
|
s_wallace_cla24_fa35_xor1 = (fa(((s_wallace_cla24_fa34_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_15 >> 0) & 0x01), ((s_wallace_cla24_and_22_16 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa35_or0 = (fa(((s_wallace_cla24_fa34_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_15 >> 0) & 0x01), ((s_wallace_cla24_and_22_16 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_nand_23_16 = nand_gate(((a >> 23) & 0x01), ((b >> 16) & 0x01));
|
|
s_wallace_cla24_and_22_17 = and_gate(((a >> 22) & 0x01), ((b >> 17) & 0x01));
|
|
s_wallace_cla24_fa36_xor1 = (fa(((s_wallace_cla24_fa35_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_16 >> 0) & 0x01), ((s_wallace_cla24_and_22_17 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa36_or0 = (fa(((s_wallace_cla24_fa35_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_16 >> 0) & 0x01), ((s_wallace_cla24_and_22_17 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_nand_23_17 = nand_gate(((a >> 23) & 0x01), ((b >> 17) & 0x01));
|
|
s_wallace_cla24_and_22_18 = and_gate(((a >> 22) & 0x01), ((b >> 18) & 0x01));
|
|
s_wallace_cla24_fa37_xor1 = (fa(((s_wallace_cla24_fa36_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_17 >> 0) & 0x01), ((s_wallace_cla24_and_22_18 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa37_or0 = (fa(((s_wallace_cla24_fa36_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_17 >> 0) & 0x01), ((s_wallace_cla24_and_22_18 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_nand_23_18 = nand_gate(((a >> 23) & 0x01), ((b >> 18) & 0x01));
|
|
s_wallace_cla24_and_22_19 = and_gate(((a >> 22) & 0x01), ((b >> 19) & 0x01));
|
|
s_wallace_cla24_fa38_xor1 = (fa(((s_wallace_cla24_fa37_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_18 >> 0) & 0x01), ((s_wallace_cla24_and_22_19 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa38_or0 = (fa(((s_wallace_cla24_fa37_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_18 >> 0) & 0x01), ((s_wallace_cla24_and_22_19 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_nand_23_19 = nand_gate(((a >> 23) & 0x01), ((b >> 19) & 0x01));
|
|
s_wallace_cla24_and_22_20 = and_gate(((a >> 22) & 0x01), ((b >> 20) & 0x01));
|
|
s_wallace_cla24_fa39_xor1 = (fa(((s_wallace_cla24_fa38_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_19 >> 0) & 0x01), ((s_wallace_cla24_and_22_20 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa39_or0 = (fa(((s_wallace_cla24_fa38_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_19 >> 0) & 0x01), ((s_wallace_cla24_and_22_20 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_nand_23_20 = nand_gate(((a >> 23) & 0x01), ((b >> 20) & 0x01));
|
|
s_wallace_cla24_and_22_21 = and_gate(((a >> 22) & 0x01), ((b >> 21) & 0x01));
|
|
s_wallace_cla24_fa40_xor1 = (fa(((s_wallace_cla24_fa39_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_20 >> 0) & 0x01), ((s_wallace_cla24_and_22_21 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa40_or0 = (fa(((s_wallace_cla24_fa39_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_20 >> 0) & 0x01), ((s_wallace_cla24_and_22_21 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_nand_23_21 = nand_gate(((a >> 23) & 0x01), ((b >> 21) & 0x01));
|
|
s_wallace_cla24_and_22_22 = and_gate(((a >> 22) & 0x01), ((b >> 22) & 0x01));
|
|
s_wallace_cla24_fa41_xor1 = (fa(((s_wallace_cla24_fa40_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_21 >> 0) & 0x01), ((s_wallace_cla24_and_22_22 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa41_or0 = (fa(((s_wallace_cla24_fa40_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_21 >> 0) & 0x01), ((s_wallace_cla24_and_22_22 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_1_2 = and_gate(((a >> 1) & 0x01), ((b >> 2) & 0x01));
|
|
s_wallace_cla24_and_0_3 = and_gate(((a >> 0) & 0x01), ((b >> 3) & 0x01));
|
|
s_wallace_cla24_ha1_xor0 = (ha(((s_wallace_cla24_and_1_2 >> 0) & 0x01), ((s_wallace_cla24_and_0_3 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_ha1_and0 = (ha(((s_wallace_cla24_and_1_2 >> 0) & 0x01), ((s_wallace_cla24_and_0_3 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_2_2 = and_gate(((a >> 2) & 0x01), ((b >> 2) & 0x01));
|
|
s_wallace_cla24_and_1_3 = and_gate(((a >> 1) & 0x01), ((b >> 3) & 0x01));
|
|
s_wallace_cla24_fa42_xor1 = (fa(((s_wallace_cla24_ha1_and0 >> 0) & 0x01), ((s_wallace_cla24_and_2_2 >> 0) & 0x01), ((s_wallace_cla24_and_1_3 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa42_or0 = (fa(((s_wallace_cla24_ha1_and0 >> 0) & 0x01), ((s_wallace_cla24_and_2_2 >> 0) & 0x01), ((s_wallace_cla24_and_1_3 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_3_2 = and_gate(((a >> 3) & 0x01), ((b >> 2) & 0x01));
|
|
s_wallace_cla24_and_2_3 = and_gate(((a >> 2) & 0x01), ((b >> 3) & 0x01));
|
|
s_wallace_cla24_fa43_xor1 = (fa(((s_wallace_cla24_fa42_or0 >> 0) & 0x01), ((s_wallace_cla24_and_3_2 >> 0) & 0x01), ((s_wallace_cla24_and_2_3 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa43_or0 = (fa(((s_wallace_cla24_fa42_or0 >> 0) & 0x01), ((s_wallace_cla24_and_3_2 >> 0) & 0x01), ((s_wallace_cla24_and_2_3 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_4_2 = and_gate(((a >> 4) & 0x01), ((b >> 2) & 0x01));
|
|
s_wallace_cla24_and_3_3 = and_gate(((a >> 3) & 0x01), ((b >> 3) & 0x01));
|
|
s_wallace_cla24_fa44_xor1 = (fa(((s_wallace_cla24_fa43_or0 >> 0) & 0x01), ((s_wallace_cla24_and_4_2 >> 0) & 0x01), ((s_wallace_cla24_and_3_3 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa44_or0 = (fa(((s_wallace_cla24_fa43_or0 >> 0) & 0x01), ((s_wallace_cla24_and_4_2 >> 0) & 0x01), ((s_wallace_cla24_and_3_3 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_5_2 = and_gate(((a >> 5) & 0x01), ((b >> 2) & 0x01));
|
|
s_wallace_cla24_and_4_3 = and_gate(((a >> 4) & 0x01), ((b >> 3) & 0x01));
|
|
s_wallace_cla24_fa45_xor1 = (fa(((s_wallace_cla24_fa44_or0 >> 0) & 0x01), ((s_wallace_cla24_and_5_2 >> 0) & 0x01), ((s_wallace_cla24_and_4_3 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa45_or0 = (fa(((s_wallace_cla24_fa44_or0 >> 0) & 0x01), ((s_wallace_cla24_and_5_2 >> 0) & 0x01), ((s_wallace_cla24_and_4_3 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_6_2 = and_gate(((a >> 6) & 0x01), ((b >> 2) & 0x01));
|
|
s_wallace_cla24_and_5_3 = and_gate(((a >> 5) & 0x01), ((b >> 3) & 0x01));
|
|
s_wallace_cla24_fa46_xor1 = (fa(((s_wallace_cla24_fa45_or0 >> 0) & 0x01), ((s_wallace_cla24_and_6_2 >> 0) & 0x01), ((s_wallace_cla24_and_5_3 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa46_or0 = (fa(((s_wallace_cla24_fa45_or0 >> 0) & 0x01), ((s_wallace_cla24_and_6_2 >> 0) & 0x01), ((s_wallace_cla24_and_5_3 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_7_2 = and_gate(((a >> 7) & 0x01), ((b >> 2) & 0x01));
|
|
s_wallace_cla24_and_6_3 = and_gate(((a >> 6) & 0x01), ((b >> 3) & 0x01));
|
|
s_wallace_cla24_fa47_xor1 = (fa(((s_wallace_cla24_fa46_or0 >> 0) & 0x01), ((s_wallace_cla24_and_7_2 >> 0) & 0x01), ((s_wallace_cla24_and_6_3 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa47_or0 = (fa(((s_wallace_cla24_fa46_or0 >> 0) & 0x01), ((s_wallace_cla24_and_7_2 >> 0) & 0x01), ((s_wallace_cla24_and_6_3 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_8_2 = and_gate(((a >> 8) & 0x01), ((b >> 2) & 0x01));
|
|
s_wallace_cla24_and_7_3 = and_gate(((a >> 7) & 0x01), ((b >> 3) & 0x01));
|
|
s_wallace_cla24_fa48_xor1 = (fa(((s_wallace_cla24_fa47_or0 >> 0) & 0x01), ((s_wallace_cla24_and_8_2 >> 0) & 0x01), ((s_wallace_cla24_and_7_3 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa48_or0 = (fa(((s_wallace_cla24_fa47_or0 >> 0) & 0x01), ((s_wallace_cla24_and_8_2 >> 0) & 0x01), ((s_wallace_cla24_and_7_3 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_9_2 = and_gate(((a >> 9) & 0x01), ((b >> 2) & 0x01));
|
|
s_wallace_cla24_and_8_3 = and_gate(((a >> 8) & 0x01), ((b >> 3) & 0x01));
|
|
s_wallace_cla24_fa49_xor1 = (fa(((s_wallace_cla24_fa48_or0 >> 0) & 0x01), ((s_wallace_cla24_and_9_2 >> 0) & 0x01), ((s_wallace_cla24_and_8_3 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa49_or0 = (fa(((s_wallace_cla24_fa48_or0 >> 0) & 0x01), ((s_wallace_cla24_and_9_2 >> 0) & 0x01), ((s_wallace_cla24_and_8_3 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_10_2 = and_gate(((a >> 10) & 0x01), ((b >> 2) & 0x01));
|
|
s_wallace_cla24_and_9_3 = and_gate(((a >> 9) & 0x01), ((b >> 3) & 0x01));
|
|
s_wallace_cla24_fa50_xor1 = (fa(((s_wallace_cla24_fa49_or0 >> 0) & 0x01), ((s_wallace_cla24_and_10_2 >> 0) & 0x01), ((s_wallace_cla24_and_9_3 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa50_or0 = (fa(((s_wallace_cla24_fa49_or0 >> 0) & 0x01), ((s_wallace_cla24_and_10_2 >> 0) & 0x01), ((s_wallace_cla24_and_9_3 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_11_2 = and_gate(((a >> 11) & 0x01), ((b >> 2) & 0x01));
|
|
s_wallace_cla24_and_10_3 = and_gate(((a >> 10) & 0x01), ((b >> 3) & 0x01));
|
|
s_wallace_cla24_fa51_xor1 = (fa(((s_wallace_cla24_fa50_or0 >> 0) & 0x01), ((s_wallace_cla24_and_11_2 >> 0) & 0x01), ((s_wallace_cla24_and_10_3 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa51_or0 = (fa(((s_wallace_cla24_fa50_or0 >> 0) & 0x01), ((s_wallace_cla24_and_11_2 >> 0) & 0x01), ((s_wallace_cla24_and_10_3 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_12_2 = and_gate(((a >> 12) & 0x01), ((b >> 2) & 0x01));
|
|
s_wallace_cla24_and_11_3 = and_gate(((a >> 11) & 0x01), ((b >> 3) & 0x01));
|
|
s_wallace_cla24_fa52_xor1 = (fa(((s_wallace_cla24_fa51_or0 >> 0) & 0x01), ((s_wallace_cla24_and_12_2 >> 0) & 0x01), ((s_wallace_cla24_and_11_3 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa52_or0 = (fa(((s_wallace_cla24_fa51_or0 >> 0) & 0x01), ((s_wallace_cla24_and_12_2 >> 0) & 0x01), ((s_wallace_cla24_and_11_3 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_13_2 = and_gate(((a >> 13) & 0x01), ((b >> 2) & 0x01));
|
|
s_wallace_cla24_and_12_3 = and_gate(((a >> 12) & 0x01), ((b >> 3) & 0x01));
|
|
s_wallace_cla24_fa53_xor1 = (fa(((s_wallace_cla24_fa52_or0 >> 0) & 0x01), ((s_wallace_cla24_and_13_2 >> 0) & 0x01), ((s_wallace_cla24_and_12_3 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa53_or0 = (fa(((s_wallace_cla24_fa52_or0 >> 0) & 0x01), ((s_wallace_cla24_and_13_2 >> 0) & 0x01), ((s_wallace_cla24_and_12_3 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_14_2 = and_gate(((a >> 14) & 0x01), ((b >> 2) & 0x01));
|
|
s_wallace_cla24_and_13_3 = and_gate(((a >> 13) & 0x01), ((b >> 3) & 0x01));
|
|
s_wallace_cla24_fa54_xor1 = (fa(((s_wallace_cla24_fa53_or0 >> 0) & 0x01), ((s_wallace_cla24_and_14_2 >> 0) & 0x01), ((s_wallace_cla24_and_13_3 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa54_or0 = (fa(((s_wallace_cla24_fa53_or0 >> 0) & 0x01), ((s_wallace_cla24_and_14_2 >> 0) & 0x01), ((s_wallace_cla24_and_13_3 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_15_2 = and_gate(((a >> 15) & 0x01), ((b >> 2) & 0x01));
|
|
s_wallace_cla24_and_14_3 = and_gate(((a >> 14) & 0x01), ((b >> 3) & 0x01));
|
|
s_wallace_cla24_fa55_xor1 = (fa(((s_wallace_cla24_fa54_or0 >> 0) & 0x01), ((s_wallace_cla24_and_15_2 >> 0) & 0x01), ((s_wallace_cla24_and_14_3 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa55_or0 = (fa(((s_wallace_cla24_fa54_or0 >> 0) & 0x01), ((s_wallace_cla24_and_15_2 >> 0) & 0x01), ((s_wallace_cla24_and_14_3 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_16_2 = and_gate(((a >> 16) & 0x01), ((b >> 2) & 0x01));
|
|
s_wallace_cla24_and_15_3 = and_gate(((a >> 15) & 0x01), ((b >> 3) & 0x01));
|
|
s_wallace_cla24_fa56_xor1 = (fa(((s_wallace_cla24_fa55_or0 >> 0) & 0x01), ((s_wallace_cla24_and_16_2 >> 0) & 0x01), ((s_wallace_cla24_and_15_3 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa56_or0 = (fa(((s_wallace_cla24_fa55_or0 >> 0) & 0x01), ((s_wallace_cla24_and_16_2 >> 0) & 0x01), ((s_wallace_cla24_and_15_3 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_17_2 = and_gate(((a >> 17) & 0x01), ((b >> 2) & 0x01));
|
|
s_wallace_cla24_and_16_3 = and_gate(((a >> 16) & 0x01), ((b >> 3) & 0x01));
|
|
s_wallace_cla24_fa57_xor1 = (fa(((s_wallace_cla24_fa56_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_2 >> 0) & 0x01), ((s_wallace_cla24_and_16_3 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa57_or0 = (fa(((s_wallace_cla24_fa56_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_2 >> 0) & 0x01), ((s_wallace_cla24_and_16_3 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_18_2 = and_gate(((a >> 18) & 0x01), ((b >> 2) & 0x01));
|
|
s_wallace_cla24_and_17_3 = and_gate(((a >> 17) & 0x01), ((b >> 3) & 0x01));
|
|
s_wallace_cla24_fa58_xor1 = (fa(((s_wallace_cla24_fa57_or0 >> 0) & 0x01), ((s_wallace_cla24_and_18_2 >> 0) & 0x01), ((s_wallace_cla24_and_17_3 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa58_or0 = (fa(((s_wallace_cla24_fa57_or0 >> 0) & 0x01), ((s_wallace_cla24_and_18_2 >> 0) & 0x01), ((s_wallace_cla24_and_17_3 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_19_2 = and_gate(((a >> 19) & 0x01), ((b >> 2) & 0x01));
|
|
s_wallace_cla24_and_18_3 = and_gate(((a >> 18) & 0x01), ((b >> 3) & 0x01));
|
|
s_wallace_cla24_fa59_xor1 = (fa(((s_wallace_cla24_fa58_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_2 >> 0) & 0x01), ((s_wallace_cla24_and_18_3 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa59_or0 = (fa(((s_wallace_cla24_fa58_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_2 >> 0) & 0x01), ((s_wallace_cla24_and_18_3 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_20_2 = and_gate(((a >> 20) & 0x01), ((b >> 2) & 0x01));
|
|
s_wallace_cla24_and_19_3 = and_gate(((a >> 19) & 0x01), ((b >> 3) & 0x01));
|
|
s_wallace_cla24_fa60_xor1 = (fa(((s_wallace_cla24_fa59_or0 >> 0) & 0x01), ((s_wallace_cla24_and_20_2 >> 0) & 0x01), ((s_wallace_cla24_and_19_3 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa60_or0 = (fa(((s_wallace_cla24_fa59_or0 >> 0) & 0x01), ((s_wallace_cla24_and_20_2 >> 0) & 0x01), ((s_wallace_cla24_and_19_3 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_21_2 = and_gate(((a >> 21) & 0x01), ((b >> 2) & 0x01));
|
|
s_wallace_cla24_and_20_3 = and_gate(((a >> 20) & 0x01), ((b >> 3) & 0x01));
|
|
s_wallace_cla24_fa61_xor1 = (fa(((s_wallace_cla24_fa60_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_2 >> 0) & 0x01), ((s_wallace_cla24_and_20_3 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa61_or0 = (fa(((s_wallace_cla24_fa60_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_2 >> 0) & 0x01), ((s_wallace_cla24_and_20_3 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_22_2 = and_gate(((a >> 22) & 0x01), ((b >> 2) & 0x01));
|
|
s_wallace_cla24_and_21_3 = and_gate(((a >> 21) & 0x01), ((b >> 3) & 0x01));
|
|
s_wallace_cla24_fa62_xor1 = (fa(((s_wallace_cla24_fa61_or0 >> 0) & 0x01), ((s_wallace_cla24_and_22_2 >> 0) & 0x01), ((s_wallace_cla24_and_21_3 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa62_or0 = (fa(((s_wallace_cla24_fa61_or0 >> 0) & 0x01), ((s_wallace_cla24_and_22_2 >> 0) & 0x01), ((s_wallace_cla24_and_21_3 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_21_4 = and_gate(((a >> 21) & 0x01), ((b >> 4) & 0x01));
|
|
s_wallace_cla24_and_20_5 = and_gate(((a >> 20) & 0x01), ((b >> 5) & 0x01));
|
|
s_wallace_cla24_fa63_xor1 = (fa(((s_wallace_cla24_fa62_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_4 >> 0) & 0x01), ((s_wallace_cla24_and_20_5 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa63_or0 = (fa(((s_wallace_cla24_fa62_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_4 >> 0) & 0x01), ((s_wallace_cla24_and_20_5 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_21_5 = and_gate(((a >> 21) & 0x01), ((b >> 5) & 0x01));
|
|
s_wallace_cla24_and_20_6 = and_gate(((a >> 20) & 0x01), ((b >> 6) & 0x01));
|
|
s_wallace_cla24_fa64_xor1 = (fa(((s_wallace_cla24_fa63_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_5 >> 0) & 0x01), ((s_wallace_cla24_and_20_6 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa64_or0 = (fa(((s_wallace_cla24_fa63_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_5 >> 0) & 0x01), ((s_wallace_cla24_and_20_6 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_21_6 = and_gate(((a >> 21) & 0x01), ((b >> 6) & 0x01));
|
|
s_wallace_cla24_and_20_7 = and_gate(((a >> 20) & 0x01), ((b >> 7) & 0x01));
|
|
s_wallace_cla24_fa65_xor1 = (fa(((s_wallace_cla24_fa64_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_6 >> 0) & 0x01), ((s_wallace_cla24_and_20_7 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa65_or0 = (fa(((s_wallace_cla24_fa64_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_6 >> 0) & 0x01), ((s_wallace_cla24_and_20_7 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_21_7 = and_gate(((a >> 21) & 0x01), ((b >> 7) & 0x01));
|
|
s_wallace_cla24_and_20_8 = and_gate(((a >> 20) & 0x01), ((b >> 8) & 0x01));
|
|
s_wallace_cla24_fa66_xor1 = (fa(((s_wallace_cla24_fa65_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_7 >> 0) & 0x01), ((s_wallace_cla24_and_20_8 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa66_or0 = (fa(((s_wallace_cla24_fa65_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_7 >> 0) & 0x01), ((s_wallace_cla24_and_20_8 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_21_8 = and_gate(((a >> 21) & 0x01), ((b >> 8) & 0x01));
|
|
s_wallace_cla24_and_20_9 = and_gate(((a >> 20) & 0x01), ((b >> 9) & 0x01));
|
|
s_wallace_cla24_fa67_xor1 = (fa(((s_wallace_cla24_fa66_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_8 >> 0) & 0x01), ((s_wallace_cla24_and_20_9 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa67_or0 = (fa(((s_wallace_cla24_fa66_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_8 >> 0) & 0x01), ((s_wallace_cla24_and_20_9 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_21_9 = and_gate(((a >> 21) & 0x01), ((b >> 9) & 0x01));
|
|
s_wallace_cla24_and_20_10 = and_gate(((a >> 20) & 0x01), ((b >> 10) & 0x01));
|
|
s_wallace_cla24_fa68_xor1 = (fa(((s_wallace_cla24_fa67_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_9 >> 0) & 0x01), ((s_wallace_cla24_and_20_10 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa68_or0 = (fa(((s_wallace_cla24_fa67_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_9 >> 0) & 0x01), ((s_wallace_cla24_and_20_10 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_21_10 = and_gate(((a >> 21) & 0x01), ((b >> 10) & 0x01));
|
|
s_wallace_cla24_and_20_11 = and_gate(((a >> 20) & 0x01), ((b >> 11) & 0x01));
|
|
s_wallace_cla24_fa69_xor1 = (fa(((s_wallace_cla24_fa68_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_10 >> 0) & 0x01), ((s_wallace_cla24_and_20_11 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa69_or0 = (fa(((s_wallace_cla24_fa68_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_10 >> 0) & 0x01), ((s_wallace_cla24_and_20_11 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_21_11 = and_gate(((a >> 21) & 0x01), ((b >> 11) & 0x01));
|
|
s_wallace_cla24_and_20_12 = and_gate(((a >> 20) & 0x01), ((b >> 12) & 0x01));
|
|
s_wallace_cla24_fa70_xor1 = (fa(((s_wallace_cla24_fa69_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_11 >> 0) & 0x01), ((s_wallace_cla24_and_20_12 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa70_or0 = (fa(((s_wallace_cla24_fa69_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_11 >> 0) & 0x01), ((s_wallace_cla24_and_20_12 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_21_12 = and_gate(((a >> 21) & 0x01), ((b >> 12) & 0x01));
|
|
s_wallace_cla24_and_20_13 = and_gate(((a >> 20) & 0x01), ((b >> 13) & 0x01));
|
|
s_wallace_cla24_fa71_xor1 = (fa(((s_wallace_cla24_fa70_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_12 >> 0) & 0x01), ((s_wallace_cla24_and_20_13 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa71_or0 = (fa(((s_wallace_cla24_fa70_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_12 >> 0) & 0x01), ((s_wallace_cla24_and_20_13 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_21_13 = and_gate(((a >> 21) & 0x01), ((b >> 13) & 0x01));
|
|
s_wallace_cla24_and_20_14 = and_gate(((a >> 20) & 0x01), ((b >> 14) & 0x01));
|
|
s_wallace_cla24_fa72_xor1 = (fa(((s_wallace_cla24_fa71_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_13 >> 0) & 0x01), ((s_wallace_cla24_and_20_14 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa72_or0 = (fa(((s_wallace_cla24_fa71_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_13 >> 0) & 0x01), ((s_wallace_cla24_and_20_14 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_21_14 = and_gate(((a >> 21) & 0x01), ((b >> 14) & 0x01));
|
|
s_wallace_cla24_and_20_15 = and_gate(((a >> 20) & 0x01), ((b >> 15) & 0x01));
|
|
s_wallace_cla24_fa73_xor1 = (fa(((s_wallace_cla24_fa72_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_14 >> 0) & 0x01), ((s_wallace_cla24_and_20_15 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa73_or0 = (fa(((s_wallace_cla24_fa72_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_14 >> 0) & 0x01), ((s_wallace_cla24_and_20_15 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_21_15 = and_gate(((a >> 21) & 0x01), ((b >> 15) & 0x01));
|
|
s_wallace_cla24_and_20_16 = and_gate(((a >> 20) & 0x01), ((b >> 16) & 0x01));
|
|
s_wallace_cla24_fa74_xor1 = (fa(((s_wallace_cla24_fa73_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_15 >> 0) & 0x01), ((s_wallace_cla24_and_20_16 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa74_or0 = (fa(((s_wallace_cla24_fa73_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_15 >> 0) & 0x01), ((s_wallace_cla24_and_20_16 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_21_16 = and_gate(((a >> 21) & 0x01), ((b >> 16) & 0x01));
|
|
s_wallace_cla24_and_20_17 = and_gate(((a >> 20) & 0x01), ((b >> 17) & 0x01));
|
|
s_wallace_cla24_fa75_xor1 = (fa(((s_wallace_cla24_fa74_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_16 >> 0) & 0x01), ((s_wallace_cla24_and_20_17 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa75_or0 = (fa(((s_wallace_cla24_fa74_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_16 >> 0) & 0x01), ((s_wallace_cla24_and_20_17 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_21_17 = and_gate(((a >> 21) & 0x01), ((b >> 17) & 0x01));
|
|
s_wallace_cla24_and_20_18 = and_gate(((a >> 20) & 0x01), ((b >> 18) & 0x01));
|
|
s_wallace_cla24_fa76_xor1 = (fa(((s_wallace_cla24_fa75_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_17 >> 0) & 0x01), ((s_wallace_cla24_and_20_18 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa76_or0 = (fa(((s_wallace_cla24_fa75_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_17 >> 0) & 0x01), ((s_wallace_cla24_and_20_18 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_21_18 = and_gate(((a >> 21) & 0x01), ((b >> 18) & 0x01));
|
|
s_wallace_cla24_and_20_19 = and_gate(((a >> 20) & 0x01), ((b >> 19) & 0x01));
|
|
s_wallace_cla24_fa77_xor1 = (fa(((s_wallace_cla24_fa76_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_18 >> 0) & 0x01), ((s_wallace_cla24_and_20_19 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa77_or0 = (fa(((s_wallace_cla24_fa76_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_18 >> 0) & 0x01), ((s_wallace_cla24_and_20_19 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_21_19 = and_gate(((a >> 21) & 0x01), ((b >> 19) & 0x01));
|
|
s_wallace_cla24_and_20_20 = and_gate(((a >> 20) & 0x01), ((b >> 20) & 0x01));
|
|
s_wallace_cla24_fa78_xor1 = (fa(((s_wallace_cla24_fa77_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_19 >> 0) & 0x01), ((s_wallace_cla24_and_20_20 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa78_or0 = (fa(((s_wallace_cla24_fa77_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_19 >> 0) & 0x01), ((s_wallace_cla24_and_20_20 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_21_20 = and_gate(((a >> 21) & 0x01), ((b >> 20) & 0x01));
|
|
s_wallace_cla24_and_20_21 = and_gate(((a >> 20) & 0x01), ((b >> 21) & 0x01));
|
|
s_wallace_cla24_fa79_xor1 = (fa(((s_wallace_cla24_fa78_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_20 >> 0) & 0x01), ((s_wallace_cla24_and_20_21 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa79_or0 = (fa(((s_wallace_cla24_fa78_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_20 >> 0) & 0x01), ((s_wallace_cla24_and_20_21 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_21_21 = and_gate(((a >> 21) & 0x01), ((b >> 21) & 0x01));
|
|
s_wallace_cla24_and_20_22 = and_gate(((a >> 20) & 0x01), ((b >> 22) & 0x01));
|
|
s_wallace_cla24_fa80_xor1 = (fa(((s_wallace_cla24_fa79_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_21 >> 0) & 0x01), ((s_wallace_cla24_and_20_22 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa80_or0 = (fa(((s_wallace_cla24_fa79_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_21 >> 0) & 0x01), ((s_wallace_cla24_and_20_22 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_21_22 = and_gate(((a >> 21) & 0x01), ((b >> 22) & 0x01));
|
|
s_wallace_cla24_nand_20_23 = nand_gate(((a >> 20) & 0x01), ((b >> 23) & 0x01));
|
|
s_wallace_cla24_fa81_xor1 = (fa(((s_wallace_cla24_fa80_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_22 >> 0) & 0x01), ((s_wallace_cla24_nand_20_23 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa81_or0 = (fa(((s_wallace_cla24_fa80_or0 >> 0) & 0x01), ((s_wallace_cla24_and_21_22 >> 0) & 0x01), ((s_wallace_cla24_nand_20_23 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_0_4 = and_gate(((a >> 0) & 0x01), ((b >> 4) & 0x01));
|
|
s_wallace_cla24_ha2_xor0 = (ha(((s_wallace_cla24_and_0_4 >> 0) & 0x01), ((s_wallace_cla24_fa1_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_ha2_and0 = (ha(((s_wallace_cla24_and_0_4 >> 0) & 0x01), ((s_wallace_cla24_fa1_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_1_4 = and_gate(((a >> 1) & 0x01), ((b >> 4) & 0x01));
|
|
s_wallace_cla24_and_0_5 = and_gate(((a >> 0) & 0x01), ((b >> 5) & 0x01));
|
|
s_wallace_cla24_fa82_xor1 = (fa(((s_wallace_cla24_ha2_and0 >> 0) & 0x01), ((s_wallace_cla24_and_1_4 >> 0) & 0x01), ((s_wallace_cla24_and_0_5 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa82_or0 = (fa(((s_wallace_cla24_ha2_and0 >> 0) & 0x01), ((s_wallace_cla24_and_1_4 >> 0) & 0x01), ((s_wallace_cla24_and_0_5 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_2_4 = and_gate(((a >> 2) & 0x01), ((b >> 4) & 0x01));
|
|
s_wallace_cla24_and_1_5 = and_gate(((a >> 1) & 0x01), ((b >> 5) & 0x01));
|
|
s_wallace_cla24_fa83_xor1 = (fa(((s_wallace_cla24_fa82_or0 >> 0) & 0x01), ((s_wallace_cla24_and_2_4 >> 0) & 0x01), ((s_wallace_cla24_and_1_5 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa83_or0 = (fa(((s_wallace_cla24_fa82_or0 >> 0) & 0x01), ((s_wallace_cla24_and_2_4 >> 0) & 0x01), ((s_wallace_cla24_and_1_5 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_3_4 = and_gate(((a >> 3) & 0x01), ((b >> 4) & 0x01));
|
|
s_wallace_cla24_and_2_5 = and_gate(((a >> 2) & 0x01), ((b >> 5) & 0x01));
|
|
s_wallace_cla24_fa84_xor1 = (fa(((s_wallace_cla24_fa83_or0 >> 0) & 0x01), ((s_wallace_cla24_and_3_4 >> 0) & 0x01), ((s_wallace_cla24_and_2_5 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa84_or0 = (fa(((s_wallace_cla24_fa83_or0 >> 0) & 0x01), ((s_wallace_cla24_and_3_4 >> 0) & 0x01), ((s_wallace_cla24_and_2_5 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_4_4 = and_gate(((a >> 4) & 0x01), ((b >> 4) & 0x01));
|
|
s_wallace_cla24_and_3_5 = and_gate(((a >> 3) & 0x01), ((b >> 5) & 0x01));
|
|
s_wallace_cla24_fa85_xor1 = (fa(((s_wallace_cla24_fa84_or0 >> 0) & 0x01), ((s_wallace_cla24_and_4_4 >> 0) & 0x01), ((s_wallace_cla24_and_3_5 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa85_or0 = (fa(((s_wallace_cla24_fa84_or0 >> 0) & 0x01), ((s_wallace_cla24_and_4_4 >> 0) & 0x01), ((s_wallace_cla24_and_3_5 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_5_4 = and_gate(((a >> 5) & 0x01), ((b >> 4) & 0x01));
|
|
s_wallace_cla24_and_4_5 = and_gate(((a >> 4) & 0x01), ((b >> 5) & 0x01));
|
|
s_wallace_cla24_fa86_xor1 = (fa(((s_wallace_cla24_fa85_or0 >> 0) & 0x01), ((s_wallace_cla24_and_5_4 >> 0) & 0x01), ((s_wallace_cla24_and_4_5 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa86_or0 = (fa(((s_wallace_cla24_fa85_or0 >> 0) & 0x01), ((s_wallace_cla24_and_5_4 >> 0) & 0x01), ((s_wallace_cla24_and_4_5 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_6_4 = and_gate(((a >> 6) & 0x01), ((b >> 4) & 0x01));
|
|
s_wallace_cla24_and_5_5 = and_gate(((a >> 5) & 0x01), ((b >> 5) & 0x01));
|
|
s_wallace_cla24_fa87_xor1 = (fa(((s_wallace_cla24_fa86_or0 >> 0) & 0x01), ((s_wallace_cla24_and_6_4 >> 0) & 0x01), ((s_wallace_cla24_and_5_5 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa87_or0 = (fa(((s_wallace_cla24_fa86_or0 >> 0) & 0x01), ((s_wallace_cla24_and_6_4 >> 0) & 0x01), ((s_wallace_cla24_and_5_5 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_7_4 = and_gate(((a >> 7) & 0x01), ((b >> 4) & 0x01));
|
|
s_wallace_cla24_and_6_5 = and_gate(((a >> 6) & 0x01), ((b >> 5) & 0x01));
|
|
s_wallace_cla24_fa88_xor1 = (fa(((s_wallace_cla24_fa87_or0 >> 0) & 0x01), ((s_wallace_cla24_and_7_4 >> 0) & 0x01), ((s_wallace_cla24_and_6_5 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa88_or0 = (fa(((s_wallace_cla24_fa87_or0 >> 0) & 0x01), ((s_wallace_cla24_and_7_4 >> 0) & 0x01), ((s_wallace_cla24_and_6_5 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_8_4 = and_gate(((a >> 8) & 0x01), ((b >> 4) & 0x01));
|
|
s_wallace_cla24_and_7_5 = and_gate(((a >> 7) & 0x01), ((b >> 5) & 0x01));
|
|
s_wallace_cla24_fa89_xor1 = (fa(((s_wallace_cla24_fa88_or0 >> 0) & 0x01), ((s_wallace_cla24_and_8_4 >> 0) & 0x01), ((s_wallace_cla24_and_7_5 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa89_or0 = (fa(((s_wallace_cla24_fa88_or0 >> 0) & 0x01), ((s_wallace_cla24_and_8_4 >> 0) & 0x01), ((s_wallace_cla24_and_7_5 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_9_4 = and_gate(((a >> 9) & 0x01), ((b >> 4) & 0x01));
|
|
s_wallace_cla24_and_8_5 = and_gate(((a >> 8) & 0x01), ((b >> 5) & 0x01));
|
|
s_wallace_cla24_fa90_xor1 = (fa(((s_wallace_cla24_fa89_or0 >> 0) & 0x01), ((s_wallace_cla24_and_9_4 >> 0) & 0x01), ((s_wallace_cla24_and_8_5 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa90_or0 = (fa(((s_wallace_cla24_fa89_or0 >> 0) & 0x01), ((s_wallace_cla24_and_9_4 >> 0) & 0x01), ((s_wallace_cla24_and_8_5 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_10_4 = and_gate(((a >> 10) & 0x01), ((b >> 4) & 0x01));
|
|
s_wallace_cla24_and_9_5 = and_gate(((a >> 9) & 0x01), ((b >> 5) & 0x01));
|
|
s_wallace_cla24_fa91_xor1 = (fa(((s_wallace_cla24_fa90_or0 >> 0) & 0x01), ((s_wallace_cla24_and_10_4 >> 0) & 0x01), ((s_wallace_cla24_and_9_5 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa91_or0 = (fa(((s_wallace_cla24_fa90_or0 >> 0) & 0x01), ((s_wallace_cla24_and_10_4 >> 0) & 0x01), ((s_wallace_cla24_and_9_5 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_11_4 = and_gate(((a >> 11) & 0x01), ((b >> 4) & 0x01));
|
|
s_wallace_cla24_and_10_5 = and_gate(((a >> 10) & 0x01), ((b >> 5) & 0x01));
|
|
s_wallace_cla24_fa92_xor1 = (fa(((s_wallace_cla24_fa91_or0 >> 0) & 0x01), ((s_wallace_cla24_and_11_4 >> 0) & 0x01), ((s_wallace_cla24_and_10_5 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa92_or0 = (fa(((s_wallace_cla24_fa91_or0 >> 0) & 0x01), ((s_wallace_cla24_and_11_4 >> 0) & 0x01), ((s_wallace_cla24_and_10_5 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_12_4 = and_gate(((a >> 12) & 0x01), ((b >> 4) & 0x01));
|
|
s_wallace_cla24_and_11_5 = and_gate(((a >> 11) & 0x01), ((b >> 5) & 0x01));
|
|
s_wallace_cla24_fa93_xor1 = (fa(((s_wallace_cla24_fa92_or0 >> 0) & 0x01), ((s_wallace_cla24_and_12_4 >> 0) & 0x01), ((s_wallace_cla24_and_11_5 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa93_or0 = (fa(((s_wallace_cla24_fa92_or0 >> 0) & 0x01), ((s_wallace_cla24_and_12_4 >> 0) & 0x01), ((s_wallace_cla24_and_11_5 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_13_4 = and_gate(((a >> 13) & 0x01), ((b >> 4) & 0x01));
|
|
s_wallace_cla24_and_12_5 = and_gate(((a >> 12) & 0x01), ((b >> 5) & 0x01));
|
|
s_wallace_cla24_fa94_xor1 = (fa(((s_wallace_cla24_fa93_or0 >> 0) & 0x01), ((s_wallace_cla24_and_13_4 >> 0) & 0x01), ((s_wallace_cla24_and_12_5 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa94_or0 = (fa(((s_wallace_cla24_fa93_or0 >> 0) & 0x01), ((s_wallace_cla24_and_13_4 >> 0) & 0x01), ((s_wallace_cla24_and_12_5 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_14_4 = and_gate(((a >> 14) & 0x01), ((b >> 4) & 0x01));
|
|
s_wallace_cla24_and_13_5 = and_gate(((a >> 13) & 0x01), ((b >> 5) & 0x01));
|
|
s_wallace_cla24_fa95_xor1 = (fa(((s_wallace_cla24_fa94_or0 >> 0) & 0x01), ((s_wallace_cla24_and_14_4 >> 0) & 0x01), ((s_wallace_cla24_and_13_5 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa95_or0 = (fa(((s_wallace_cla24_fa94_or0 >> 0) & 0x01), ((s_wallace_cla24_and_14_4 >> 0) & 0x01), ((s_wallace_cla24_and_13_5 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_15_4 = and_gate(((a >> 15) & 0x01), ((b >> 4) & 0x01));
|
|
s_wallace_cla24_and_14_5 = and_gate(((a >> 14) & 0x01), ((b >> 5) & 0x01));
|
|
s_wallace_cla24_fa96_xor1 = (fa(((s_wallace_cla24_fa95_or0 >> 0) & 0x01), ((s_wallace_cla24_and_15_4 >> 0) & 0x01), ((s_wallace_cla24_and_14_5 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa96_or0 = (fa(((s_wallace_cla24_fa95_or0 >> 0) & 0x01), ((s_wallace_cla24_and_15_4 >> 0) & 0x01), ((s_wallace_cla24_and_14_5 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_16_4 = and_gate(((a >> 16) & 0x01), ((b >> 4) & 0x01));
|
|
s_wallace_cla24_and_15_5 = and_gate(((a >> 15) & 0x01), ((b >> 5) & 0x01));
|
|
s_wallace_cla24_fa97_xor1 = (fa(((s_wallace_cla24_fa96_or0 >> 0) & 0x01), ((s_wallace_cla24_and_16_4 >> 0) & 0x01), ((s_wallace_cla24_and_15_5 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa97_or0 = (fa(((s_wallace_cla24_fa96_or0 >> 0) & 0x01), ((s_wallace_cla24_and_16_4 >> 0) & 0x01), ((s_wallace_cla24_and_15_5 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_17_4 = and_gate(((a >> 17) & 0x01), ((b >> 4) & 0x01));
|
|
s_wallace_cla24_and_16_5 = and_gate(((a >> 16) & 0x01), ((b >> 5) & 0x01));
|
|
s_wallace_cla24_fa98_xor1 = (fa(((s_wallace_cla24_fa97_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_4 >> 0) & 0x01), ((s_wallace_cla24_and_16_5 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa98_or0 = (fa(((s_wallace_cla24_fa97_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_4 >> 0) & 0x01), ((s_wallace_cla24_and_16_5 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_18_4 = and_gate(((a >> 18) & 0x01), ((b >> 4) & 0x01));
|
|
s_wallace_cla24_and_17_5 = and_gate(((a >> 17) & 0x01), ((b >> 5) & 0x01));
|
|
s_wallace_cla24_fa99_xor1 = (fa(((s_wallace_cla24_fa98_or0 >> 0) & 0x01), ((s_wallace_cla24_and_18_4 >> 0) & 0x01), ((s_wallace_cla24_and_17_5 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa99_or0 = (fa(((s_wallace_cla24_fa98_or0 >> 0) & 0x01), ((s_wallace_cla24_and_18_4 >> 0) & 0x01), ((s_wallace_cla24_and_17_5 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_19_4 = and_gate(((a >> 19) & 0x01), ((b >> 4) & 0x01));
|
|
s_wallace_cla24_and_18_5 = and_gate(((a >> 18) & 0x01), ((b >> 5) & 0x01));
|
|
s_wallace_cla24_fa100_xor1 = (fa(((s_wallace_cla24_fa99_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_4 >> 0) & 0x01), ((s_wallace_cla24_and_18_5 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa100_or0 = (fa(((s_wallace_cla24_fa99_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_4 >> 0) & 0x01), ((s_wallace_cla24_and_18_5 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_20_4 = and_gate(((a >> 20) & 0x01), ((b >> 4) & 0x01));
|
|
s_wallace_cla24_and_19_5 = and_gate(((a >> 19) & 0x01), ((b >> 5) & 0x01));
|
|
s_wallace_cla24_fa101_xor1 = (fa(((s_wallace_cla24_fa100_or0 >> 0) & 0x01), ((s_wallace_cla24_and_20_4 >> 0) & 0x01), ((s_wallace_cla24_and_19_5 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa101_or0 = (fa(((s_wallace_cla24_fa100_or0 >> 0) & 0x01), ((s_wallace_cla24_and_20_4 >> 0) & 0x01), ((s_wallace_cla24_and_19_5 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_19_6 = and_gate(((a >> 19) & 0x01), ((b >> 6) & 0x01));
|
|
s_wallace_cla24_and_18_7 = and_gate(((a >> 18) & 0x01), ((b >> 7) & 0x01));
|
|
s_wallace_cla24_fa102_xor1 = (fa(((s_wallace_cla24_fa101_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_6 >> 0) & 0x01), ((s_wallace_cla24_and_18_7 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa102_or0 = (fa(((s_wallace_cla24_fa101_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_6 >> 0) & 0x01), ((s_wallace_cla24_and_18_7 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_19_7 = and_gate(((a >> 19) & 0x01), ((b >> 7) & 0x01));
|
|
s_wallace_cla24_and_18_8 = and_gate(((a >> 18) & 0x01), ((b >> 8) & 0x01));
|
|
s_wallace_cla24_fa103_xor1 = (fa(((s_wallace_cla24_fa102_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_7 >> 0) & 0x01), ((s_wallace_cla24_and_18_8 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa103_or0 = (fa(((s_wallace_cla24_fa102_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_7 >> 0) & 0x01), ((s_wallace_cla24_and_18_8 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_19_8 = and_gate(((a >> 19) & 0x01), ((b >> 8) & 0x01));
|
|
s_wallace_cla24_and_18_9 = and_gate(((a >> 18) & 0x01), ((b >> 9) & 0x01));
|
|
s_wallace_cla24_fa104_xor1 = (fa(((s_wallace_cla24_fa103_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_8 >> 0) & 0x01), ((s_wallace_cla24_and_18_9 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa104_or0 = (fa(((s_wallace_cla24_fa103_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_8 >> 0) & 0x01), ((s_wallace_cla24_and_18_9 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_19_9 = and_gate(((a >> 19) & 0x01), ((b >> 9) & 0x01));
|
|
s_wallace_cla24_and_18_10 = and_gate(((a >> 18) & 0x01), ((b >> 10) & 0x01));
|
|
s_wallace_cla24_fa105_xor1 = (fa(((s_wallace_cla24_fa104_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_9 >> 0) & 0x01), ((s_wallace_cla24_and_18_10 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa105_or0 = (fa(((s_wallace_cla24_fa104_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_9 >> 0) & 0x01), ((s_wallace_cla24_and_18_10 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_19_10 = and_gate(((a >> 19) & 0x01), ((b >> 10) & 0x01));
|
|
s_wallace_cla24_and_18_11 = and_gate(((a >> 18) & 0x01), ((b >> 11) & 0x01));
|
|
s_wallace_cla24_fa106_xor1 = (fa(((s_wallace_cla24_fa105_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_10 >> 0) & 0x01), ((s_wallace_cla24_and_18_11 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa106_or0 = (fa(((s_wallace_cla24_fa105_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_10 >> 0) & 0x01), ((s_wallace_cla24_and_18_11 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_19_11 = and_gate(((a >> 19) & 0x01), ((b >> 11) & 0x01));
|
|
s_wallace_cla24_and_18_12 = and_gate(((a >> 18) & 0x01), ((b >> 12) & 0x01));
|
|
s_wallace_cla24_fa107_xor1 = (fa(((s_wallace_cla24_fa106_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_11 >> 0) & 0x01), ((s_wallace_cla24_and_18_12 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa107_or0 = (fa(((s_wallace_cla24_fa106_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_11 >> 0) & 0x01), ((s_wallace_cla24_and_18_12 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_19_12 = and_gate(((a >> 19) & 0x01), ((b >> 12) & 0x01));
|
|
s_wallace_cla24_and_18_13 = and_gate(((a >> 18) & 0x01), ((b >> 13) & 0x01));
|
|
s_wallace_cla24_fa108_xor1 = (fa(((s_wallace_cla24_fa107_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_12 >> 0) & 0x01), ((s_wallace_cla24_and_18_13 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa108_or0 = (fa(((s_wallace_cla24_fa107_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_12 >> 0) & 0x01), ((s_wallace_cla24_and_18_13 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_19_13 = and_gate(((a >> 19) & 0x01), ((b >> 13) & 0x01));
|
|
s_wallace_cla24_and_18_14 = and_gate(((a >> 18) & 0x01), ((b >> 14) & 0x01));
|
|
s_wallace_cla24_fa109_xor1 = (fa(((s_wallace_cla24_fa108_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_13 >> 0) & 0x01), ((s_wallace_cla24_and_18_14 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa109_or0 = (fa(((s_wallace_cla24_fa108_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_13 >> 0) & 0x01), ((s_wallace_cla24_and_18_14 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_19_14 = and_gate(((a >> 19) & 0x01), ((b >> 14) & 0x01));
|
|
s_wallace_cla24_and_18_15 = and_gate(((a >> 18) & 0x01), ((b >> 15) & 0x01));
|
|
s_wallace_cla24_fa110_xor1 = (fa(((s_wallace_cla24_fa109_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_14 >> 0) & 0x01), ((s_wallace_cla24_and_18_15 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa110_or0 = (fa(((s_wallace_cla24_fa109_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_14 >> 0) & 0x01), ((s_wallace_cla24_and_18_15 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_19_15 = and_gate(((a >> 19) & 0x01), ((b >> 15) & 0x01));
|
|
s_wallace_cla24_and_18_16 = and_gate(((a >> 18) & 0x01), ((b >> 16) & 0x01));
|
|
s_wallace_cla24_fa111_xor1 = (fa(((s_wallace_cla24_fa110_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_15 >> 0) & 0x01), ((s_wallace_cla24_and_18_16 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa111_or0 = (fa(((s_wallace_cla24_fa110_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_15 >> 0) & 0x01), ((s_wallace_cla24_and_18_16 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_19_16 = and_gate(((a >> 19) & 0x01), ((b >> 16) & 0x01));
|
|
s_wallace_cla24_and_18_17 = and_gate(((a >> 18) & 0x01), ((b >> 17) & 0x01));
|
|
s_wallace_cla24_fa112_xor1 = (fa(((s_wallace_cla24_fa111_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_16 >> 0) & 0x01), ((s_wallace_cla24_and_18_17 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa112_or0 = (fa(((s_wallace_cla24_fa111_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_16 >> 0) & 0x01), ((s_wallace_cla24_and_18_17 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_19_17 = and_gate(((a >> 19) & 0x01), ((b >> 17) & 0x01));
|
|
s_wallace_cla24_and_18_18 = and_gate(((a >> 18) & 0x01), ((b >> 18) & 0x01));
|
|
s_wallace_cla24_fa113_xor1 = (fa(((s_wallace_cla24_fa112_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_17 >> 0) & 0x01), ((s_wallace_cla24_and_18_18 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa113_or0 = (fa(((s_wallace_cla24_fa112_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_17 >> 0) & 0x01), ((s_wallace_cla24_and_18_18 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_19_18 = and_gate(((a >> 19) & 0x01), ((b >> 18) & 0x01));
|
|
s_wallace_cla24_and_18_19 = and_gate(((a >> 18) & 0x01), ((b >> 19) & 0x01));
|
|
s_wallace_cla24_fa114_xor1 = (fa(((s_wallace_cla24_fa113_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_18 >> 0) & 0x01), ((s_wallace_cla24_and_18_19 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa114_or0 = (fa(((s_wallace_cla24_fa113_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_18 >> 0) & 0x01), ((s_wallace_cla24_and_18_19 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_19_19 = and_gate(((a >> 19) & 0x01), ((b >> 19) & 0x01));
|
|
s_wallace_cla24_and_18_20 = and_gate(((a >> 18) & 0x01), ((b >> 20) & 0x01));
|
|
s_wallace_cla24_fa115_xor1 = (fa(((s_wallace_cla24_fa114_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_19 >> 0) & 0x01), ((s_wallace_cla24_and_18_20 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa115_or0 = (fa(((s_wallace_cla24_fa114_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_19 >> 0) & 0x01), ((s_wallace_cla24_and_18_20 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_19_20 = and_gate(((a >> 19) & 0x01), ((b >> 20) & 0x01));
|
|
s_wallace_cla24_and_18_21 = and_gate(((a >> 18) & 0x01), ((b >> 21) & 0x01));
|
|
s_wallace_cla24_fa116_xor1 = (fa(((s_wallace_cla24_fa115_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_20 >> 0) & 0x01), ((s_wallace_cla24_and_18_21 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa116_or0 = (fa(((s_wallace_cla24_fa115_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_20 >> 0) & 0x01), ((s_wallace_cla24_and_18_21 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_19_21 = and_gate(((a >> 19) & 0x01), ((b >> 21) & 0x01));
|
|
s_wallace_cla24_and_18_22 = and_gate(((a >> 18) & 0x01), ((b >> 22) & 0x01));
|
|
s_wallace_cla24_fa117_xor1 = (fa(((s_wallace_cla24_fa116_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_21 >> 0) & 0x01), ((s_wallace_cla24_and_18_22 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa117_or0 = (fa(((s_wallace_cla24_fa116_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_21 >> 0) & 0x01), ((s_wallace_cla24_and_18_22 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_19_22 = and_gate(((a >> 19) & 0x01), ((b >> 22) & 0x01));
|
|
s_wallace_cla24_nand_18_23 = nand_gate(((a >> 18) & 0x01), ((b >> 23) & 0x01));
|
|
s_wallace_cla24_fa118_xor1 = (fa(((s_wallace_cla24_fa117_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_22 >> 0) & 0x01), ((s_wallace_cla24_nand_18_23 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa118_or0 = (fa(((s_wallace_cla24_fa117_or0 >> 0) & 0x01), ((s_wallace_cla24_and_19_22 >> 0) & 0x01), ((s_wallace_cla24_nand_18_23 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_nand_19_23 = nand_gate(((a >> 19) & 0x01), ((b >> 23) & 0x01));
|
|
s_wallace_cla24_fa119_xor1 = (fa(((s_wallace_cla24_fa118_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_19_23 >> 0) & 0x01), ((s_wallace_cla24_fa39_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa119_or0 = (fa(((s_wallace_cla24_fa118_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_19_23 >> 0) & 0x01), ((s_wallace_cla24_fa39_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_ha3_xor0 = (ha(((s_wallace_cla24_fa2_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa43_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_ha3_and0 = (ha(((s_wallace_cla24_fa2_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa43_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_0_6 = and_gate(((a >> 0) & 0x01), ((b >> 6) & 0x01));
|
|
s_wallace_cla24_fa120_xor1 = (fa(((s_wallace_cla24_ha3_and0 >> 0) & 0x01), ((s_wallace_cla24_and_0_6 >> 0) & 0x01), ((s_wallace_cla24_fa3_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa120_or0 = (fa(((s_wallace_cla24_ha3_and0 >> 0) & 0x01), ((s_wallace_cla24_and_0_6 >> 0) & 0x01), ((s_wallace_cla24_fa3_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_1_6 = and_gate(((a >> 1) & 0x01), ((b >> 6) & 0x01));
|
|
s_wallace_cla24_and_0_7 = and_gate(((a >> 0) & 0x01), ((b >> 7) & 0x01));
|
|
s_wallace_cla24_fa121_xor1 = (fa(((s_wallace_cla24_fa120_or0 >> 0) & 0x01), ((s_wallace_cla24_and_1_6 >> 0) & 0x01), ((s_wallace_cla24_and_0_7 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa121_or0 = (fa(((s_wallace_cla24_fa120_or0 >> 0) & 0x01), ((s_wallace_cla24_and_1_6 >> 0) & 0x01), ((s_wallace_cla24_and_0_7 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_2_6 = and_gate(((a >> 2) & 0x01), ((b >> 6) & 0x01));
|
|
s_wallace_cla24_and_1_7 = and_gate(((a >> 1) & 0x01), ((b >> 7) & 0x01));
|
|
s_wallace_cla24_fa122_xor1 = (fa(((s_wallace_cla24_fa121_or0 >> 0) & 0x01), ((s_wallace_cla24_and_2_6 >> 0) & 0x01), ((s_wallace_cla24_and_1_7 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa122_or0 = (fa(((s_wallace_cla24_fa121_or0 >> 0) & 0x01), ((s_wallace_cla24_and_2_6 >> 0) & 0x01), ((s_wallace_cla24_and_1_7 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_3_6 = and_gate(((a >> 3) & 0x01), ((b >> 6) & 0x01));
|
|
s_wallace_cla24_and_2_7 = and_gate(((a >> 2) & 0x01), ((b >> 7) & 0x01));
|
|
s_wallace_cla24_fa123_xor1 = (fa(((s_wallace_cla24_fa122_or0 >> 0) & 0x01), ((s_wallace_cla24_and_3_6 >> 0) & 0x01), ((s_wallace_cla24_and_2_7 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa123_or0 = (fa(((s_wallace_cla24_fa122_or0 >> 0) & 0x01), ((s_wallace_cla24_and_3_6 >> 0) & 0x01), ((s_wallace_cla24_and_2_7 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_4_6 = and_gate(((a >> 4) & 0x01), ((b >> 6) & 0x01));
|
|
s_wallace_cla24_and_3_7 = and_gate(((a >> 3) & 0x01), ((b >> 7) & 0x01));
|
|
s_wallace_cla24_fa124_xor1 = (fa(((s_wallace_cla24_fa123_or0 >> 0) & 0x01), ((s_wallace_cla24_and_4_6 >> 0) & 0x01), ((s_wallace_cla24_and_3_7 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa124_or0 = (fa(((s_wallace_cla24_fa123_or0 >> 0) & 0x01), ((s_wallace_cla24_and_4_6 >> 0) & 0x01), ((s_wallace_cla24_and_3_7 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_5_6 = and_gate(((a >> 5) & 0x01), ((b >> 6) & 0x01));
|
|
s_wallace_cla24_and_4_7 = and_gate(((a >> 4) & 0x01), ((b >> 7) & 0x01));
|
|
s_wallace_cla24_fa125_xor1 = (fa(((s_wallace_cla24_fa124_or0 >> 0) & 0x01), ((s_wallace_cla24_and_5_6 >> 0) & 0x01), ((s_wallace_cla24_and_4_7 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa125_or0 = (fa(((s_wallace_cla24_fa124_or0 >> 0) & 0x01), ((s_wallace_cla24_and_5_6 >> 0) & 0x01), ((s_wallace_cla24_and_4_7 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_6_6 = and_gate(((a >> 6) & 0x01), ((b >> 6) & 0x01));
|
|
s_wallace_cla24_and_5_7 = and_gate(((a >> 5) & 0x01), ((b >> 7) & 0x01));
|
|
s_wallace_cla24_fa126_xor1 = (fa(((s_wallace_cla24_fa125_or0 >> 0) & 0x01), ((s_wallace_cla24_and_6_6 >> 0) & 0x01), ((s_wallace_cla24_and_5_7 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa126_or0 = (fa(((s_wallace_cla24_fa125_or0 >> 0) & 0x01), ((s_wallace_cla24_and_6_6 >> 0) & 0x01), ((s_wallace_cla24_and_5_7 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_7_6 = and_gate(((a >> 7) & 0x01), ((b >> 6) & 0x01));
|
|
s_wallace_cla24_and_6_7 = and_gate(((a >> 6) & 0x01), ((b >> 7) & 0x01));
|
|
s_wallace_cla24_fa127_xor1 = (fa(((s_wallace_cla24_fa126_or0 >> 0) & 0x01), ((s_wallace_cla24_and_7_6 >> 0) & 0x01), ((s_wallace_cla24_and_6_7 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa127_or0 = (fa(((s_wallace_cla24_fa126_or0 >> 0) & 0x01), ((s_wallace_cla24_and_7_6 >> 0) & 0x01), ((s_wallace_cla24_and_6_7 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_8_6 = and_gate(((a >> 8) & 0x01), ((b >> 6) & 0x01));
|
|
s_wallace_cla24_and_7_7 = and_gate(((a >> 7) & 0x01), ((b >> 7) & 0x01));
|
|
s_wallace_cla24_fa128_xor1 = (fa(((s_wallace_cla24_fa127_or0 >> 0) & 0x01), ((s_wallace_cla24_and_8_6 >> 0) & 0x01), ((s_wallace_cla24_and_7_7 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa128_or0 = (fa(((s_wallace_cla24_fa127_or0 >> 0) & 0x01), ((s_wallace_cla24_and_8_6 >> 0) & 0x01), ((s_wallace_cla24_and_7_7 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_9_6 = and_gate(((a >> 9) & 0x01), ((b >> 6) & 0x01));
|
|
s_wallace_cla24_and_8_7 = and_gate(((a >> 8) & 0x01), ((b >> 7) & 0x01));
|
|
s_wallace_cla24_fa129_xor1 = (fa(((s_wallace_cla24_fa128_or0 >> 0) & 0x01), ((s_wallace_cla24_and_9_6 >> 0) & 0x01), ((s_wallace_cla24_and_8_7 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa129_or0 = (fa(((s_wallace_cla24_fa128_or0 >> 0) & 0x01), ((s_wallace_cla24_and_9_6 >> 0) & 0x01), ((s_wallace_cla24_and_8_7 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_10_6 = and_gate(((a >> 10) & 0x01), ((b >> 6) & 0x01));
|
|
s_wallace_cla24_and_9_7 = and_gate(((a >> 9) & 0x01), ((b >> 7) & 0x01));
|
|
s_wallace_cla24_fa130_xor1 = (fa(((s_wallace_cla24_fa129_or0 >> 0) & 0x01), ((s_wallace_cla24_and_10_6 >> 0) & 0x01), ((s_wallace_cla24_and_9_7 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa130_or0 = (fa(((s_wallace_cla24_fa129_or0 >> 0) & 0x01), ((s_wallace_cla24_and_10_6 >> 0) & 0x01), ((s_wallace_cla24_and_9_7 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_11_6 = and_gate(((a >> 11) & 0x01), ((b >> 6) & 0x01));
|
|
s_wallace_cla24_and_10_7 = and_gate(((a >> 10) & 0x01), ((b >> 7) & 0x01));
|
|
s_wallace_cla24_fa131_xor1 = (fa(((s_wallace_cla24_fa130_or0 >> 0) & 0x01), ((s_wallace_cla24_and_11_6 >> 0) & 0x01), ((s_wallace_cla24_and_10_7 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa131_or0 = (fa(((s_wallace_cla24_fa130_or0 >> 0) & 0x01), ((s_wallace_cla24_and_11_6 >> 0) & 0x01), ((s_wallace_cla24_and_10_7 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_12_6 = and_gate(((a >> 12) & 0x01), ((b >> 6) & 0x01));
|
|
s_wallace_cla24_and_11_7 = and_gate(((a >> 11) & 0x01), ((b >> 7) & 0x01));
|
|
s_wallace_cla24_fa132_xor1 = (fa(((s_wallace_cla24_fa131_or0 >> 0) & 0x01), ((s_wallace_cla24_and_12_6 >> 0) & 0x01), ((s_wallace_cla24_and_11_7 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa132_or0 = (fa(((s_wallace_cla24_fa131_or0 >> 0) & 0x01), ((s_wallace_cla24_and_12_6 >> 0) & 0x01), ((s_wallace_cla24_and_11_7 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_13_6 = and_gate(((a >> 13) & 0x01), ((b >> 6) & 0x01));
|
|
s_wallace_cla24_and_12_7 = and_gate(((a >> 12) & 0x01), ((b >> 7) & 0x01));
|
|
s_wallace_cla24_fa133_xor1 = (fa(((s_wallace_cla24_fa132_or0 >> 0) & 0x01), ((s_wallace_cla24_and_13_6 >> 0) & 0x01), ((s_wallace_cla24_and_12_7 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa133_or0 = (fa(((s_wallace_cla24_fa132_or0 >> 0) & 0x01), ((s_wallace_cla24_and_13_6 >> 0) & 0x01), ((s_wallace_cla24_and_12_7 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_14_6 = and_gate(((a >> 14) & 0x01), ((b >> 6) & 0x01));
|
|
s_wallace_cla24_and_13_7 = and_gate(((a >> 13) & 0x01), ((b >> 7) & 0x01));
|
|
s_wallace_cla24_fa134_xor1 = (fa(((s_wallace_cla24_fa133_or0 >> 0) & 0x01), ((s_wallace_cla24_and_14_6 >> 0) & 0x01), ((s_wallace_cla24_and_13_7 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa134_or0 = (fa(((s_wallace_cla24_fa133_or0 >> 0) & 0x01), ((s_wallace_cla24_and_14_6 >> 0) & 0x01), ((s_wallace_cla24_and_13_7 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_15_6 = and_gate(((a >> 15) & 0x01), ((b >> 6) & 0x01));
|
|
s_wallace_cla24_and_14_7 = and_gate(((a >> 14) & 0x01), ((b >> 7) & 0x01));
|
|
s_wallace_cla24_fa135_xor1 = (fa(((s_wallace_cla24_fa134_or0 >> 0) & 0x01), ((s_wallace_cla24_and_15_6 >> 0) & 0x01), ((s_wallace_cla24_and_14_7 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa135_or0 = (fa(((s_wallace_cla24_fa134_or0 >> 0) & 0x01), ((s_wallace_cla24_and_15_6 >> 0) & 0x01), ((s_wallace_cla24_and_14_7 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_16_6 = and_gate(((a >> 16) & 0x01), ((b >> 6) & 0x01));
|
|
s_wallace_cla24_and_15_7 = and_gate(((a >> 15) & 0x01), ((b >> 7) & 0x01));
|
|
s_wallace_cla24_fa136_xor1 = (fa(((s_wallace_cla24_fa135_or0 >> 0) & 0x01), ((s_wallace_cla24_and_16_6 >> 0) & 0x01), ((s_wallace_cla24_and_15_7 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa136_or0 = (fa(((s_wallace_cla24_fa135_or0 >> 0) & 0x01), ((s_wallace_cla24_and_16_6 >> 0) & 0x01), ((s_wallace_cla24_and_15_7 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_17_6 = and_gate(((a >> 17) & 0x01), ((b >> 6) & 0x01));
|
|
s_wallace_cla24_and_16_7 = and_gate(((a >> 16) & 0x01), ((b >> 7) & 0x01));
|
|
s_wallace_cla24_fa137_xor1 = (fa(((s_wallace_cla24_fa136_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_6 >> 0) & 0x01), ((s_wallace_cla24_and_16_7 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa137_or0 = (fa(((s_wallace_cla24_fa136_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_6 >> 0) & 0x01), ((s_wallace_cla24_and_16_7 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_18_6 = and_gate(((a >> 18) & 0x01), ((b >> 6) & 0x01));
|
|
s_wallace_cla24_and_17_7 = and_gate(((a >> 17) & 0x01), ((b >> 7) & 0x01));
|
|
s_wallace_cla24_fa138_xor1 = (fa(((s_wallace_cla24_fa137_or0 >> 0) & 0x01), ((s_wallace_cla24_and_18_6 >> 0) & 0x01), ((s_wallace_cla24_and_17_7 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa138_or0 = (fa(((s_wallace_cla24_fa137_or0 >> 0) & 0x01), ((s_wallace_cla24_and_18_6 >> 0) & 0x01), ((s_wallace_cla24_and_17_7 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_17_8 = and_gate(((a >> 17) & 0x01), ((b >> 8) & 0x01));
|
|
s_wallace_cla24_and_16_9 = and_gate(((a >> 16) & 0x01), ((b >> 9) & 0x01));
|
|
s_wallace_cla24_fa139_xor1 = (fa(((s_wallace_cla24_fa138_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_8 >> 0) & 0x01), ((s_wallace_cla24_and_16_9 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa139_or0 = (fa(((s_wallace_cla24_fa138_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_8 >> 0) & 0x01), ((s_wallace_cla24_and_16_9 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_17_9 = and_gate(((a >> 17) & 0x01), ((b >> 9) & 0x01));
|
|
s_wallace_cla24_and_16_10 = and_gate(((a >> 16) & 0x01), ((b >> 10) & 0x01));
|
|
s_wallace_cla24_fa140_xor1 = (fa(((s_wallace_cla24_fa139_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_9 >> 0) & 0x01), ((s_wallace_cla24_and_16_10 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa140_or0 = (fa(((s_wallace_cla24_fa139_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_9 >> 0) & 0x01), ((s_wallace_cla24_and_16_10 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_17_10 = and_gate(((a >> 17) & 0x01), ((b >> 10) & 0x01));
|
|
s_wallace_cla24_and_16_11 = and_gate(((a >> 16) & 0x01), ((b >> 11) & 0x01));
|
|
s_wallace_cla24_fa141_xor1 = (fa(((s_wallace_cla24_fa140_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_10 >> 0) & 0x01), ((s_wallace_cla24_and_16_11 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa141_or0 = (fa(((s_wallace_cla24_fa140_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_10 >> 0) & 0x01), ((s_wallace_cla24_and_16_11 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_17_11 = and_gate(((a >> 17) & 0x01), ((b >> 11) & 0x01));
|
|
s_wallace_cla24_and_16_12 = and_gate(((a >> 16) & 0x01), ((b >> 12) & 0x01));
|
|
s_wallace_cla24_fa142_xor1 = (fa(((s_wallace_cla24_fa141_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_11 >> 0) & 0x01), ((s_wallace_cla24_and_16_12 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa142_or0 = (fa(((s_wallace_cla24_fa141_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_11 >> 0) & 0x01), ((s_wallace_cla24_and_16_12 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_17_12 = and_gate(((a >> 17) & 0x01), ((b >> 12) & 0x01));
|
|
s_wallace_cla24_and_16_13 = and_gate(((a >> 16) & 0x01), ((b >> 13) & 0x01));
|
|
s_wallace_cla24_fa143_xor1 = (fa(((s_wallace_cla24_fa142_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_12 >> 0) & 0x01), ((s_wallace_cla24_and_16_13 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa143_or0 = (fa(((s_wallace_cla24_fa142_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_12 >> 0) & 0x01), ((s_wallace_cla24_and_16_13 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_17_13 = and_gate(((a >> 17) & 0x01), ((b >> 13) & 0x01));
|
|
s_wallace_cla24_and_16_14 = and_gate(((a >> 16) & 0x01), ((b >> 14) & 0x01));
|
|
s_wallace_cla24_fa144_xor1 = (fa(((s_wallace_cla24_fa143_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_13 >> 0) & 0x01), ((s_wallace_cla24_and_16_14 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa144_or0 = (fa(((s_wallace_cla24_fa143_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_13 >> 0) & 0x01), ((s_wallace_cla24_and_16_14 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_17_14 = and_gate(((a >> 17) & 0x01), ((b >> 14) & 0x01));
|
|
s_wallace_cla24_and_16_15 = and_gate(((a >> 16) & 0x01), ((b >> 15) & 0x01));
|
|
s_wallace_cla24_fa145_xor1 = (fa(((s_wallace_cla24_fa144_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_14 >> 0) & 0x01), ((s_wallace_cla24_and_16_15 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa145_or0 = (fa(((s_wallace_cla24_fa144_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_14 >> 0) & 0x01), ((s_wallace_cla24_and_16_15 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_17_15 = and_gate(((a >> 17) & 0x01), ((b >> 15) & 0x01));
|
|
s_wallace_cla24_and_16_16 = and_gate(((a >> 16) & 0x01), ((b >> 16) & 0x01));
|
|
s_wallace_cla24_fa146_xor1 = (fa(((s_wallace_cla24_fa145_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_15 >> 0) & 0x01), ((s_wallace_cla24_and_16_16 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa146_or0 = (fa(((s_wallace_cla24_fa145_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_15 >> 0) & 0x01), ((s_wallace_cla24_and_16_16 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_17_16 = and_gate(((a >> 17) & 0x01), ((b >> 16) & 0x01));
|
|
s_wallace_cla24_and_16_17 = and_gate(((a >> 16) & 0x01), ((b >> 17) & 0x01));
|
|
s_wallace_cla24_fa147_xor1 = (fa(((s_wallace_cla24_fa146_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_16 >> 0) & 0x01), ((s_wallace_cla24_and_16_17 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa147_or0 = (fa(((s_wallace_cla24_fa146_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_16 >> 0) & 0x01), ((s_wallace_cla24_and_16_17 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_17_17 = and_gate(((a >> 17) & 0x01), ((b >> 17) & 0x01));
|
|
s_wallace_cla24_and_16_18 = and_gate(((a >> 16) & 0x01), ((b >> 18) & 0x01));
|
|
s_wallace_cla24_fa148_xor1 = (fa(((s_wallace_cla24_fa147_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_17 >> 0) & 0x01), ((s_wallace_cla24_and_16_18 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa148_or0 = (fa(((s_wallace_cla24_fa147_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_17 >> 0) & 0x01), ((s_wallace_cla24_and_16_18 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_17_18 = and_gate(((a >> 17) & 0x01), ((b >> 18) & 0x01));
|
|
s_wallace_cla24_and_16_19 = and_gate(((a >> 16) & 0x01), ((b >> 19) & 0x01));
|
|
s_wallace_cla24_fa149_xor1 = (fa(((s_wallace_cla24_fa148_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_18 >> 0) & 0x01), ((s_wallace_cla24_and_16_19 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa149_or0 = (fa(((s_wallace_cla24_fa148_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_18 >> 0) & 0x01), ((s_wallace_cla24_and_16_19 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_17_19 = and_gate(((a >> 17) & 0x01), ((b >> 19) & 0x01));
|
|
s_wallace_cla24_and_16_20 = and_gate(((a >> 16) & 0x01), ((b >> 20) & 0x01));
|
|
s_wallace_cla24_fa150_xor1 = (fa(((s_wallace_cla24_fa149_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_19 >> 0) & 0x01), ((s_wallace_cla24_and_16_20 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa150_or0 = (fa(((s_wallace_cla24_fa149_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_19 >> 0) & 0x01), ((s_wallace_cla24_and_16_20 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_17_20 = and_gate(((a >> 17) & 0x01), ((b >> 20) & 0x01));
|
|
s_wallace_cla24_and_16_21 = and_gate(((a >> 16) & 0x01), ((b >> 21) & 0x01));
|
|
s_wallace_cla24_fa151_xor1 = (fa(((s_wallace_cla24_fa150_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_20 >> 0) & 0x01), ((s_wallace_cla24_and_16_21 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa151_or0 = (fa(((s_wallace_cla24_fa150_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_20 >> 0) & 0x01), ((s_wallace_cla24_and_16_21 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_17_21 = and_gate(((a >> 17) & 0x01), ((b >> 21) & 0x01));
|
|
s_wallace_cla24_and_16_22 = and_gate(((a >> 16) & 0x01), ((b >> 22) & 0x01));
|
|
s_wallace_cla24_fa152_xor1 = (fa(((s_wallace_cla24_fa151_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_21 >> 0) & 0x01), ((s_wallace_cla24_and_16_22 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa152_or0 = (fa(((s_wallace_cla24_fa151_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_21 >> 0) & 0x01), ((s_wallace_cla24_and_16_22 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_17_22 = and_gate(((a >> 17) & 0x01), ((b >> 22) & 0x01));
|
|
s_wallace_cla24_nand_16_23 = nand_gate(((a >> 16) & 0x01), ((b >> 23) & 0x01));
|
|
s_wallace_cla24_fa153_xor1 = (fa(((s_wallace_cla24_fa152_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_22 >> 0) & 0x01), ((s_wallace_cla24_nand_16_23 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa153_or0 = (fa(((s_wallace_cla24_fa152_or0 >> 0) & 0x01), ((s_wallace_cla24_and_17_22 >> 0) & 0x01), ((s_wallace_cla24_nand_16_23 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_nand_17_23 = nand_gate(((a >> 17) & 0x01), ((b >> 23) & 0x01));
|
|
s_wallace_cla24_fa154_xor1 = (fa(((s_wallace_cla24_fa153_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_17_23 >> 0) & 0x01), ((s_wallace_cla24_fa37_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa154_or0 = (fa(((s_wallace_cla24_fa153_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_17_23 >> 0) & 0x01), ((s_wallace_cla24_fa37_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa155_xor1 = (fa(((s_wallace_cla24_fa154_or0 >> 0) & 0x01), ((s_wallace_cla24_fa38_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa79_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa155_or0 = (fa(((s_wallace_cla24_fa154_or0 >> 0) & 0x01), ((s_wallace_cla24_fa38_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa79_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_ha4_xor0 = (ha(((s_wallace_cla24_fa44_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa83_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_ha4_and0 = (ha(((s_wallace_cla24_fa44_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa83_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa156_xor1 = (fa(((s_wallace_cla24_ha4_and0 >> 0) & 0x01), ((s_wallace_cla24_fa4_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa45_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa156_or0 = (fa(((s_wallace_cla24_ha4_and0 >> 0) & 0x01), ((s_wallace_cla24_fa4_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa45_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_0_8 = and_gate(((a >> 0) & 0x01), ((b >> 8) & 0x01));
|
|
s_wallace_cla24_fa157_xor1 = (fa(((s_wallace_cla24_fa156_or0 >> 0) & 0x01), ((s_wallace_cla24_and_0_8 >> 0) & 0x01), ((s_wallace_cla24_fa5_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa157_or0 = (fa(((s_wallace_cla24_fa156_or0 >> 0) & 0x01), ((s_wallace_cla24_and_0_8 >> 0) & 0x01), ((s_wallace_cla24_fa5_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_1_8 = and_gate(((a >> 1) & 0x01), ((b >> 8) & 0x01));
|
|
s_wallace_cla24_and_0_9 = and_gate(((a >> 0) & 0x01), ((b >> 9) & 0x01));
|
|
s_wallace_cla24_fa158_xor1 = (fa(((s_wallace_cla24_fa157_or0 >> 0) & 0x01), ((s_wallace_cla24_and_1_8 >> 0) & 0x01), ((s_wallace_cla24_and_0_9 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa158_or0 = (fa(((s_wallace_cla24_fa157_or0 >> 0) & 0x01), ((s_wallace_cla24_and_1_8 >> 0) & 0x01), ((s_wallace_cla24_and_0_9 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_2_8 = and_gate(((a >> 2) & 0x01), ((b >> 8) & 0x01));
|
|
s_wallace_cla24_and_1_9 = and_gate(((a >> 1) & 0x01), ((b >> 9) & 0x01));
|
|
s_wallace_cla24_fa159_xor1 = (fa(((s_wallace_cla24_fa158_or0 >> 0) & 0x01), ((s_wallace_cla24_and_2_8 >> 0) & 0x01), ((s_wallace_cla24_and_1_9 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa159_or0 = (fa(((s_wallace_cla24_fa158_or0 >> 0) & 0x01), ((s_wallace_cla24_and_2_8 >> 0) & 0x01), ((s_wallace_cla24_and_1_9 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_3_8 = and_gate(((a >> 3) & 0x01), ((b >> 8) & 0x01));
|
|
s_wallace_cla24_and_2_9 = and_gate(((a >> 2) & 0x01), ((b >> 9) & 0x01));
|
|
s_wallace_cla24_fa160_xor1 = (fa(((s_wallace_cla24_fa159_or0 >> 0) & 0x01), ((s_wallace_cla24_and_3_8 >> 0) & 0x01), ((s_wallace_cla24_and_2_9 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa160_or0 = (fa(((s_wallace_cla24_fa159_or0 >> 0) & 0x01), ((s_wallace_cla24_and_3_8 >> 0) & 0x01), ((s_wallace_cla24_and_2_9 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_4_8 = and_gate(((a >> 4) & 0x01), ((b >> 8) & 0x01));
|
|
s_wallace_cla24_and_3_9 = and_gate(((a >> 3) & 0x01), ((b >> 9) & 0x01));
|
|
s_wallace_cla24_fa161_xor1 = (fa(((s_wallace_cla24_fa160_or0 >> 0) & 0x01), ((s_wallace_cla24_and_4_8 >> 0) & 0x01), ((s_wallace_cla24_and_3_9 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa161_or0 = (fa(((s_wallace_cla24_fa160_or0 >> 0) & 0x01), ((s_wallace_cla24_and_4_8 >> 0) & 0x01), ((s_wallace_cla24_and_3_9 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_5_8 = and_gate(((a >> 5) & 0x01), ((b >> 8) & 0x01));
|
|
s_wallace_cla24_and_4_9 = and_gate(((a >> 4) & 0x01), ((b >> 9) & 0x01));
|
|
s_wallace_cla24_fa162_xor1 = (fa(((s_wallace_cla24_fa161_or0 >> 0) & 0x01), ((s_wallace_cla24_and_5_8 >> 0) & 0x01), ((s_wallace_cla24_and_4_9 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa162_or0 = (fa(((s_wallace_cla24_fa161_or0 >> 0) & 0x01), ((s_wallace_cla24_and_5_8 >> 0) & 0x01), ((s_wallace_cla24_and_4_9 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_6_8 = and_gate(((a >> 6) & 0x01), ((b >> 8) & 0x01));
|
|
s_wallace_cla24_and_5_9 = and_gate(((a >> 5) & 0x01), ((b >> 9) & 0x01));
|
|
s_wallace_cla24_fa163_xor1 = (fa(((s_wallace_cla24_fa162_or0 >> 0) & 0x01), ((s_wallace_cla24_and_6_8 >> 0) & 0x01), ((s_wallace_cla24_and_5_9 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa163_or0 = (fa(((s_wallace_cla24_fa162_or0 >> 0) & 0x01), ((s_wallace_cla24_and_6_8 >> 0) & 0x01), ((s_wallace_cla24_and_5_9 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_7_8 = and_gate(((a >> 7) & 0x01), ((b >> 8) & 0x01));
|
|
s_wallace_cla24_and_6_9 = and_gate(((a >> 6) & 0x01), ((b >> 9) & 0x01));
|
|
s_wallace_cla24_fa164_xor1 = (fa(((s_wallace_cla24_fa163_or0 >> 0) & 0x01), ((s_wallace_cla24_and_7_8 >> 0) & 0x01), ((s_wallace_cla24_and_6_9 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa164_or0 = (fa(((s_wallace_cla24_fa163_or0 >> 0) & 0x01), ((s_wallace_cla24_and_7_8 >> 0) & 0x01), ((s_wallace_cla24_and_6_9 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_8_8 = and_gate(((a >> 8) & 0x01), ((b >> 8) & 0x01));
|
|
s_wallace_cla24_and_7_9 = and_gate(((a >> 7) & 0x01), ((b >> 9) & 0x01));
|
|
s_wallace_cla24_fa165_xor1 = (fa(((s_wallace_cla24_fa164_or0 >> 0) & 0x01), ((s_wallace_cla24_and_8_8 >> 0) & 0x01), ((s_wallace_cla24_and_7_9 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa165_or0 = (fa(((s_wallace_cla24_fa164_or0 >> 0) & 0x01), ((s_wallace_cla24_and_8_8 >> 0) & 0x01), ((s_wallace_cla24_and_7_9 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_9_8 = and_gate(((a >> 9) & 0x01), ((b >> 8) & 0x01));
|
|
s_wallace_cla24_and_8_9 = and_gate(((a >> 8) & 0x01), ((b >> 9) & 0x01));
|
|
s_wallace_cla24_fa166_xor1 = (fa(((s_wallace_cla24_fa165_or0 >> 0) & 0x01), ((s_wallace_cla24_and_9_8 >> 0) & 0x01), ((s_wallace_cla24_and_8_9 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa166_or0 = (fa(((s_wallace_cla24_fa165_or0 >> 0) & 0x01), ((s_wallace_cla24_and_9_8 >> 0) & 0x01), ((s_wallace_cla24_and_8_9 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_10_8 = and_gate(((a >> 10) & 0x01), ((b >> 8) & 0x01));
|
|
s_wallace_cla24_and_9_9 = and_gate(((a >> 9) & 0x01), ((b >> 9) & 0x01));
|
|
s_wallace_cla24_fa167_xor1 = (fa(((s_wallace_cla24_fa166_or0 >> 0) & 0x01), ((s_wallace_cla24_and_10_8 >> 0) & 0x01), ((s_wallace_cla24_and_9_9 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa167_or0 = (fa(((s_wallace_cla24_fa166_or0 >> 0) & 0x01), ((s_wallace_cla24_and_10_8 >> 0) & 0x01), ((s_wallace_cla24_and_9_9 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_11_8 = and_gate(((a >> 11) & 0x01), ((b >> 8) & 0x01));
|
|
s_wallace_cla24_and_10_9 = and_gate(((a >> 10) & 0x01), ((b >> 9) & 0x01));
|
|
s_wallace_cla24_fa168_xor1 = (fa(((s_wallace_cla24_fa167_or0 >> 0) & 0x01), ((s_wallace_cla24_and_11_8 >> 0) & 0x01), ((s_wallace_cla24_and_10_9 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa168_or0 = (fa(((s_wallace_cla24_fa167_or0 >> 0) & 0x01), ((s_wallace_cla24_and_11_8 >> 0) & 0x01), ((s_wallace_cla24_and_10_9 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_12_8 = and_gate(((a >> 12) & 0x01), ((b >> 8) & 0x01));
|
|
s_wallace_cla24_and_11_9 = and_gate(((a >> 11) & 0x01), ((b >> 9) & 0x01));
|
|
s_wallace_cla24_fa169_xor1 = (fa(((s_wallace_cla24_fa168_or0 >> 0) & 0x01), ((s_wallace_cla24_and_12_8 >> 0) & 0x01), ((s_wallace_cla24_and_11_9 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa169_or0 = (fa(((s_wallace_cla24_fa168_or0 >> 0) & 0x01), ((s_wallace_cla24_and_12_8 >> 0) & 0x01), ((s_wallace_cla24_and_11_9 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_13_8 = and_gate(((a >> 13) & 0x01), ((b >> 8) & 0x01));
|
|
s_wallace_cla24_and_12_9 = and_gate(((a >> 12) & 0x01), ((b >> 9) & 0x01));
|
|
s_wallace_cla24_fa170_xor1 = (fa(((s_wallace_cla24_fa169_or0 >> 0) & 0x01), ((s_wallace_cla24_and_13_8 >> 0) & 0x01), ((s_wallace_cla24_and_12_9 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa170_or0 = (fa(((s_wallace_cla24_fa169_or0 >> 0) & 0x01), ((s_wallace_cla24_and_13_8 >> 0) & 0x01), ((s_wallace_cla24_and_12_9 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_14_8 = and_gate(((a >> 14) & 0x01), ((b >> 8) & 0x01));
|
|
s_wallace_cla24_and_13_9 = and_gate(((a >> 13) & 0x01), ((b >> 9) & 0x01));
|
|
s_wallace_cla24_fa171_xor1 = (fa(((s_wallace_cla24_fa170_or0 >> 0) & 0x01), ((s_wallace_cla24_and_14_8 >> 0) & 0x01), ((s_wallace_cla24_and_13_9 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa171_or0 = (fa(((s_wallace_cla24_fa170_or0 >> 0) & 0x01), ((s_wallace_cla24_and_14_8 >> 0) & 0x01), ((s_wallace_cla24_and_13_9 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_15_8 = and_gate(((a >> 15) & 0x01), ((b >> 8) & 0x01));
|
|
s_wallace_cla24_and_14_9 = and_gate(((a >> 14) & 0x01), ((b >> 9) & 0x01));
|
|
s_wallace_cla24_fa172_xor1 = (fa(((s_wallace_cla24_fa171_or0 >> 0) & 0x01), ((s_wallace_cla24_and_15_8 >> 0) & 0x01), ((s_wallace_cla24_and_14_9 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa172_or0 = (fa(((s_wallace_cla24_fa171_or0 >> 0) & 0x01), ((s_wallace_cla24_and_15_8 >> 0) & 0x01), ((s_wallace_cla24_and_14_9 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_16_8 = and_gate(((a >> 16) & 0x01), ((b >> 8) & 0x01));
|
|
s_wallace_cla24_and_15_9 = and_gate(((a >> 15) & 0x01), ((b >> 9) & 0x01));
|
|
s_wallace_cla24_fa173_xor1 = (fa(((s_wallace_cla24_fa172_or0 >> 0) & 0x01), ((s_wallace_cla24_and_16_8 >> 0) & 0x01), ((s_wallace_cla24_and_15_9 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa173_or0 = (fa(((s_wallace_cla24_fa172_or0 >> 0) & 0x01), ((s_wallace_cla24_and_16_8 >> 0) & 0x01), ((s_wallace_cla24_and_15_9 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_15_10 = and_gate(((a >> 15) & 0x01), ((b >> 10) & 0x01));
|
|
s_wallace_cla24_and_14_11 = and_gate(((a >> 14) & 0x01), ((b >> 11) & 0x01));
|
|
s_wallace_cla24_fa174_xor1 = (fa(((s_wallace_cla24_fa173_or0 >> 0) & 0x01), ((s_wallace_cla24_and_15_10 >> 0) & 0x01), ((s_wallace_cla24_and_14_11 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa174_or0 = (fa(((s_wallace_cla24_fa173_or0 >> 0) & 0x01), ((s_wallace_cla24_and_15_10 >> 0) & 0x01), ((s_wallace_cla24_and_14_11 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_15_11 = and_gate(((a >> 15) & 0x01), ((b >> 11) & 0x01));
|
|
s_wallace_cla24_and_14_12 = and_gate(((a >> 14) & 0x01), ((b >> 12) & 0x01));
|
|
s_wallace_cla24_fa175_xor1 = (fa(((s_wallace_cla24_fa174_or0 >> 0) & 0x01), ((s_wallace_cla24_and_15_11 >> 0) & 0x01), ((s_wallace_cla24_and_14_12 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa175_or0 = (fa(((s_wallace_cla24_fa174_or0 >> 0) & 0x01), ((s_wallace_cla24_and_15_11 >> 0) & 0x01), ((s_wallace_cla24_and_14_12 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_15_12 = and_gate(((a >> 15) & 0x01), ((b >> 12) & 0x01));
|
|
s_wallace_cla24_and_14_13 = and_gate(((a >> 14) & 0x01), ((b >> 13) & 0x01));
|
|
s_wallace_cla24_fa176_xor1 = (fa(((s_wallace_cla24_fa175_or0 >> 0) & 0x01), ((s_wallace_cla24_and_15_12 >> 0) & 0x01), ((s_wallace_cla24_and_14_13 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa176_or0 = (fa(((s_wallace_cla24_fa175_or0 >> 0) & 0x01), ((s_wallace_cla24_and_15_12 >> 0) & 0x01), ((s_wallace_cla24_and_14_13 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_15_13 = and_gate(((a >> 15) & 0x01), ((b >> 13) & 0x01));
|
|
s_wallace_cla24_and_14_14 = and_gate(((a >> 14) & 0x01), ((b >> 14) & 0x01));
|
|
s_wallace_cla24_fa177_xor1 = (fa(((s_wallace_cla24_fa176_or0 >> 0) & 0x01), ((s_wallace_cla24_and_15_13 >> 0) & 0x01), ((s_wallace_cla24_and_14_14 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa177_or0 = (fa(((s_wallace_cla24_fa176_or0 >> 0) & 0x01), ((s_wallace_cla24_and_15_13 >> 0) & 0x01), ((s_wallace_cla24_and_14_14 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_15_14 = and_gate(((a >> 15) & 0x01), ((b >> 14) & 0x01));
|
|
s_wallace_cla24_and_14_15 = and_gate(((a >> 14) & 0x01), ((b >> 15) & 0x01));
|
|
s_wallace_cla24_fa178_xor1 = (fa(((s_wallace_cla24_fa177_or0 >> 0) & 0x01), ((s_wallace_cla24_and_15_14 >> 0) & 0x01), ((s_wallace_cla24_and_14_15 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa178_or0 = (fa(((s_wallace_cla24_fa177_or0 >> 0) & 0x01), ((s_wallace_cla24_and_15_14 >> 0) & 0x01), ((s_wallace_cla24_and_14_15 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_15_15 = and_gate(((a >> 15) & 0x01), ((b >> 15) & 0x01));
|
|
s_wallace_cla24_and_14_16 = and_gate(((a >> 14) & 0x01), ((b >> 16) & 0x01));
|
|
s_wallace_cla24_fa179_xor1 = (fa(((s_wallace_cla24_fa178_or0 >> 0) & 0x01), ((s_wallace_cla24_and_15_15 >> 0) & 0x01), ((s_wallace_cla24_and_14_16 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa179_or0 = (fa(((s_wallace_cla24_fa178_or0 >> 0) & 0x01), ((s_wallace_cla24_and_15_15 >> 0) & 0x01), ((s_wallace_cla24_and_14_16 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_15_16 = and_gate(((a >> 15) & 0x01), ((b >> 16) & 0x01));
|
|
s_wallace_cla24_and_14_17 = and_gate(((a >> 14) & 0x01), ((b >> 17) & 0x01));
|
|
s_wallace_cla24_fa180_xor1 = (fa(((s_wallace_cla24_fa179_or0 >> 0) & 0x01), ((s_wallace_cla24_and_15_16 >> 0) & 0x01), ((s_wallace_cla24_and_14_17 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa180_or0 = (fa(((s_wallace_cla24_fa179_or0 >> 0) & 0x01), ((s_wallace_cla24_and_15_16 >> 0) & 0x01), ((s_wallace_cla24_and_14_17 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_15_17 = and_gate(((a >> 15) & 0x01), ((b >> 17) & 0x01));
|
|
s_wallace_cla24_and_14_18 = and_gate(((a >> 14) & 0x01), ((b >> 18) & 0x01));
|
|
s_wallace_cla24_fa181_xor1 = (fa(((s_wallace_cla24_fa180_or0 >> 0) & 0x01), ((s_wallace_cla24_and_15_17 >> 0) & 0x01), ((s_wallace_cla24_and_14_18 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa181_or0 = (fa(((s_wallace_cla24_fa180_or0 >> 0) & 0x01), ((s_wallace_cla24_and_15_17 >> 0) & 0x01), ((s_wallace_cla24_and_14_18 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_15_18 = and_gate(((a >> 15) & 0x01), ((b >> 18) & 0x01));
|
|
s_wallace_cla24_and_14_19 = and_gate(((a >> 14) & 0x01), ((b >> 19) & 0x01));
|
|
s_wallace_cla24_fa182_xor1 = (fa(((s_wallace_cla24_fa181_or0 >> 0) & 0x01), ((s_wallace_cla24_and_15_18 >> 0) & 0x01), ((s_wallace_cla24_and_14_19 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa182_or0 = (fa(((s_wallace_cla24_fa181_or0 >> 0) & 0x01), ((s_wallace_cla24_and_15_18 >> 0) & 0x01), ((s_wallace_cla24_and_14_19 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_15_19 = and_gate(((a >> 15) & 0x01), ((b >> 19) & 0x01));
|
|
s_wallace_cla24_and_14_20 = and_gate(((a >> 14) & 0x01), ((b >> 20) & 0x01));
|
|
s_wallace_cla24_fa183_xor1 = (fa(((s_wallace_cla24_fa182_or0 >> 0) & 0x01), ((s_wallace_cla24_and_15_19 >> 0) & 0x01), ((s_wallace_cla24_and_14_20 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa183_or0 = (fa(((s_wallace_cla24_fa182_or0 >> 0) & 0x01), ((s_wallace_cla24_and_15_19 >> 0) & 0x01), ((s_wallace_cla24_and_14_20 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_15_20 = and_gate(((a >> 15) & 0x01), ((b >> 20) & 0x01));
|
|
s_wallace_cla24_and_14_21 = and_gate(((a >> 14) & 0x01), ((b >> 21) & 0x01));
|
|
s_wallace_cla24_fa184_xor1 = (fa(((s_wallace_cla24_fa183_or0 >> 0) & 0x01), ((s_wallace_cla24_and_15_20 >> 0) & 0x01), ((s_wallace_cla24_and_14_21 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa184_or0 = (fa(((s_wallace_cla24_fa183_or0 >> 0) & 0x01), ((s_wallace_cla24_and_15_20 >> 0) & 0x01), ((s_wallace_cla24_and_14_21 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_15_21 = and_gate(((a >> 15) & 0x01), ((b >> 21) & 0x01));
|
|
s_wallace_cla24_and_14_22 = and_gate(((a >> 14) & 0x01), ((b >> 22) & 0x01));
|
|
s_wallace_cla24_fa185_xor1 = (fa(((s_wallace_cla24_fa184_or0 >> 0) & 0x01), ((s_wallace_cla24_and_15_21 >> 0) & 0x01), ((s_wallace_cla24_and_14_22 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa185_or0 = (fa(((s_wallace_cla24_fa184_or0 >> 0) & 0x01), ((s_wallace_cla24_and_15_21 >> 0) & 0x01), ((s_wallace_cla24_and_14_22 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_15_22 = and_gate(((a >> 15) & 0x01), ((b >> 22) & 0x01));
|
|
s_wallace_cla24_nand_14_23 = nand_gate(((a >> 14) & 0x01), ((b >> 23) & 0x01));
|
|
s_wallace_cla24_fa186_xor1 = (fa(((s_wallace_cla24_fa185_or0 >> 0) & 0x01), ((s_wallace_cla24_and_15_22 >> 0) & 0x01), ((s_wallace_cla24_nand_14_23 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa186_or0 = (fa(((s_wallace_cla24_fa185_or0 >> 0) & 0x01), ((s_wallace_cla24_and_15_22 >> 0) & 0x01), ((s_wallace_cla24_nand_14_23 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_nand_15_23 = nand_gate(((a >> 15) & 0x01), ((b >> 23) & 0x01));
|
|
s_wallace_cla24_fa187_xor1 = (fa(((s_wallace_cla24_fa186_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_15_23 >> 0) & 0x01), ((s_wallace_cla24_fa35_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa187_or0 = (fa(((s_wallace_cla24_fa186_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_15_23 >> 0) & 0x01), ((s_wallace_cla24_fa35_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa188_xor1 = (fa(((s_wallace_cla24_fa187_or0 >> 0) & 0x01), ((s_wallace_cla24_fa36_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa77_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa188_or0 = (fa(((s_wallace_cla24_fa187_or0 >> 0) & 0x01), ((s_wallace_cla24_fa36_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa77_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa189_xor1 = (fa(((s_wallace_cla24_fa188_or0 >> 0) & 0x01), ((s_wallace_cla24_fa78_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa117_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa189_or0 = (fa(((s_wallace_cla24_fa188_or0 >> 0) & 0x01), ((s_wallace_cla24_fa78_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa117_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_ha5_xor0 = (ha(((s_wallace_cla24_fa84_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa121_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_ha5_and0 = (ha(((s_wallace_cla24_fa84_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa121_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa190_xor1 = (fa(((s_wallace_cla24_ha5_and0 >> 0) & 0x01), ((s_wallace_cla24_fa46_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa85_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa190_or0 = (fa(((s_wallace_cla24_ha5_and0 >> 0) & 0x01), ((s_wallace_cla24_fa46_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa85_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa191_xor1 = (fa(((s_wallace_cla24_fa190_or0 >> 0) & 0x01), ((s_wallace_cla24_fa6_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa47_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa191_or0 = (fa(((s_wallace_cla24_fa190_or0 >> 0) & 0x01), ((s_wallace_cla24_fa6_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa47_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_0_10 = and_gate(((a >> 0) & 0x01), ((b >> 10) & 0x01));
|
|
s_wallace_cla24_fa192_xor1 = (fa(((s_wallace_cla24_fa191_or0 >> 0) & 0x01), ((s_wallace_cla24_and_0_10 >> 0) & 0x01), ((s_wallace_cla24_fa7_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa192_or0 = (fa(((s_wallace_cla24_fa191_or0 >> 0) & 0x01), ((s_wallace_cla24_and_0_10 >> 0) & 0x01), ((s_wallace_cla24_fa7_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_1_10 = and_gate(((a >> 1) & 0x01), ((b >> 10) & 0x01));
|
|
s_wallace_cla24_and_0_11 = and_gate(((a >> 0) & 0x01), ((b >> 11) & 0x01));
|
|
s_wallace_cla24_fa193_xor1 = (fa(((s_wallace_cla24_fa192_or0 >> 0) & 0x01), ((s_wallace_cla24_and_1_10 >> 0) & 0x01), ((s_wallace_cla24_and_0_11 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa193_or0 = (fa(((s_wallace_cla24_fa192_or0 >> 0) & 0x01), ((s_wallace_cla24_and_1_10 >> 0) & 0x01), ((s_wallace_cla24_and_0_11 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_2_10 = and_gate(((a >> 2) & 0x01), ((b >> 10) & 0x01));
|
|
s_wallace_cla24_and_1_11 = and_gate(((a >> 1) & 0x01), ((b >> 11) & 0x01));
|
|
s_wallace_cla24_fa194_xor1 = (fa(((s_wallace_cla24_fa193_or0 >> 0) & 0x01), ((s_wallace_cla24_and_2_10 >> 0) & 0x01), ((s_wallace_cla24_and_1_11 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa194_or0 = (fa(((s_wallace_cla24_fa193_or0 >> 0) & 0x01), ((s_wallace_cla24_and_2_10 >> 0) & 0x01), ((s_wallace_cla24_and_1_11 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_3_10 = and_gate(((a >> 3) & 0x01), ((b >> 10) & 0x01));
|
|
s_wallace_cla24_and_2_11 = and_gate(((a >> 2) & 0x01), ((b >> 11) & 0x01));
|
|
s_wallace_cla24_fa195_xor1 = (fa(((s_wallace_cla24_fa194_or0 >> 0) & 0x01), ((s_wallace_cla24_and_3_10 >> 0) & 0x01), ((s_wallace_cla24_and_2_11 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa195_or0 = (fa(((s_wallace_cla24_fa194_or0 >> 0) & 0x01), ((s_wallace_cla24_and_3_10 >> 0) & 0x01), ((s_wallace_cla24_and_2_11 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_4_10 = and_gate(((a >> 4) & 0x01), ((b >> 10) & 0x01));
|
|
s_wallace_cla24_and_3_11 = and_gate(((a >> 3) & 0x01), ((b >> 11) & 0x01));
|
|
s_wallace_cla24_fa196_xor1 = (fa(((s_wallace_cla24_fa195_or0 >> 0) & 0x01), ((s_wallace_cla24_and_4_10 >> 0) & 0x01), ((s_wallace_cla24_and_3_11 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa196_or0 = (fa(((s_wallace_cla24_fa195_or0 >> 0) & 0x01), ((s_wallace_cla24_and_4_10 >> 0) & 0x01), ((s_wallace_cla24_and_3_11 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_5_10 = and_gate(((a >> 5) & 0x01), ((b >> 10) & 0x01));
|
|
s_wallace_cla24_and_4_11 = and_gate(((a >> 4) & 0x01), ((b >> 11) & 0x01));
|
|
s_wallace_cla24_fa197_xor1 = (fa(((s_wallace_cla24_fa196_or0 >> 0) & 0x01), ((s_wallace_cla24_and_5_10 >> 0) & 0x01), ((s_wallace_cla24_and_4_11 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa197_or0 = (fa(((s_wallace_cla24_fa196_or0 >> 0) & 0x01), ((s_wallace_cla24_and_5_10 >> 0) & 0x01), ((s_wallace_cla24_and_4_11 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_6_10 = and_gate(((a >> 6) & 0x01), ((b >> 10) & 0x01));
|
|
s_wallace_cla24_and_5_11 = and_gate(((a >> 5) & 0x01), ((b >> 11) & 0x01));
|
|
s_wallace_cla24_fa198_xor1 = (fa(((s_wallace_cla24_fa197_or0 >> 0) & 0x01), ((s_wallace_cla24_and_6_10 >> 0) & 0x01), ((s_wallace_cla24_and_5_11 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa198_or0 = (fa(((s_wallace_cla24_fa197_or0 >> 0) & 0x01), ((s_wallace_cla24_and_6_10 >> 0) & 0x01), ((s_wallace_cla24_and_5_11 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_7_10 = and_gate(((a >> 7) & 0x01), ((b >> 10) & 0x01));
|
|
s_wallace_cla24_and_6_11 = and_gate(((a >> 6) & 0x01), ((b >> 11) & 0x01));
|
|
s_wallace_cla24_fa199_xor1 = (fa(((s_wallace_cla24_fa198_or0 >> 0) & 0x01), ((s_wallace_cla24_and_7_10 >> 0) & 0x01), ((s_wallace_cla24_and_6_11 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa199_or0 = (fa(((s_wallace_cla24_fa198_or0 >> 0) & 0x01), ((s_wallace_cla24_and_7_10 >> 0) & 0x01), ((s_wallace_cla24_and_6_11 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_8_10 = and_gate(((a >> 8) & 0x01), ((b >> 10) & 0x01));
|
|
s_wallace_cla24_and_7_11 = and_gate(((a >> 7) & 0x01), ((b >> 11) & 0x01));
|
|
s_wallace_cla24_fa200_xor1 = (fa(((s_wallace_cla24_fa199_or0 >> 0) & 0x01), ((s_wallace_cla24_and_8_10 >> 0) & 0x01), ((s_wallace_cla24_and_7_11 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa200_or0 = (fa(((s_wallace_cla24_fa199_or0 >> 0) & 0x01), ((s_wallace_cla24_and_8_10 >> 0) & 0x01), ((s_wallace_cla24_and_7_11 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_9_10 = and_gate(((a >> 9) & 0x01), ((b >> 10) & 0x01));
|
|
s_wallace_cla24_and_8_11 = and_gate(((a >> 8) & 0x01), ((b >> 11) & 0x01));
|
|
s_wallace_cla24_fa201_xor1 = (fa(((s_wallace_cla24_fa200_or0 >> 0) & 0x01), ((s_wallace_cla24_and_9_10 >> 0) & 0x01), ((s_wallace_cla24_and_8_11 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa201_or0 = (fa(((s_wallace_cla24_fa200_or0 >> 0) & 0x01), ((s_wallace_cla24_and_9_10 >> 0) & 0x01), ((s_wallace_cla24_and_8_11 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_10_10 = and_gate(((a >> 10) & 0x01), ((b >> 10) & 0x01));
|
|
s_wallace_cla24_and_9_11 = and_gate(((a >> 9) & 0x01), ((b >> 11) & 0x01));
|
|
s_wallace_cla24_fa202_xor1 = (fa(((s_wallace_cla24_fa201_or0 >> 0) & 0x01), ((s_wallace_cla24_and_10_10 >> 0) & 0x01), ((s_wallace_cla24_and_9_11 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa202_or0 = (fa(((s_wallace_cla24_fa201_or0 >> 0) & 0x01), ((s_wallace_cla24_and_10_10 >> 0) & 0x01), ((s_wallace_cla24_and_9_11 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_11_10 = and_gate(((a >> 11) & 0x01), ((b >> 10) & 0x01));
|
|
s_wallace_cla24_and_10_11 = and_gate(((a >> 10) & 0x01), ((b >> 11) & 0x01));
|
|
s_wallace_cla24_fa203_xor1 = (fa(((s_wallace_cla24_fa202_or0 >> 0) & 0x01), ((s_wallace_cla24_and_11_10 >> 0) & 0x01), ((s_wallace_cla24_and_10_11 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa203_or0 = (fa(((s_wallace_cla24_fa202_or0 >> 0) & 0x01), ((s_wallace_cla24_and_11_10 >> 0) & 0x01), ((s_wallace_cla24_and_10_11 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_12_10 = and_gate(((a >> 12) & 0x01), ((b >> 10) & 0x01));
|
|
s_wallace_cla24_and_11_11 = and_gate(((a >> 11) & 0x01), ((b >> 11) & 0x01));
|
|
s_wallace_cla24_fa204_xor1 = (fa(((s_wallace_cla24_fa203_or0 >> 0) & 0x01), ((s_wallace_cla24_and_12_10 >> 0) & 0x01), ((s_wallace_cla24_and_11_11 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa204_or0 = (fa(((s_wallace_cla24_fa203_or0 >> 0) & 0x01), ((s_wallace_cla24_and_12_10 >> 0) & 0x01), ((s_wallace_cla24_and_11_11 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_13_10 = and_gate(((a >> 13) & 0x01), ((b >> 10) & 0x01));
|
|
s_wallace_cla24_and_12_11 = and_gate(((a >> 12) & 0x01), ((b >> 11) & 0x01));
|
|
s_wallace_cla24_fa205_xor1 = (fa(((s_wallace_cla24_fa204_or0 >> 0) & 0x01), ((s_wallace_cla24_and_13_10 >> 0) & 0x01), ((s_wallace_cla24_and_12_11 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa205_or0 = (fa(((s_wallace_cla24_fa204_or0 >> 0) & 0x01), ((s_wallace_cla24_and_13_10 >> 0) & 0x01), ((s_wallace_cla24_and_12_11 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_14_10 = and_gate(((a >> 14) & 0x01), ((b >> 10) & 0x01));
|
|
s_wallace_cla24_and_13_11 = and_gate(((a >> 13) & 0x01), ((b >> 11) & 0x01));
|
|
s_wallace_cla24_fa206_xor1 = (fa(((s_wallace_cla24_fa205_or0 >> 0) & 0x01), ((s_wallace_cla24_and_14_10 >> 0) & 0x01), ((s_wallace_cla24_and_13_11 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa206_or0 = (fa(((s_wallace_cla24_fa205_or0 >> 0) & 0x01), ((s_wallace_cla24_and_14_10 >> 0) & 0x01), ((s_wallace_cla24_and_13_11 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_13_12 = and_gate(((a >> 13) & 0x01), ((b >> 12) & 0x01));
|
|
s_wallace_cla24_and_12_13 = and_gate(((a >> 12) & 0x01), ((b >> 13) & 0x01));
|
|
s_wallace_cla24_fa207_xor1 = (fa(((s_wallace_cla24_fa206_or0 >> 0) & 0x01), ((s_wallace_cla24_and_13_12 >> 0) & 0x01), ((s_wallace_cla24_and_12_13 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa207_or0 = (fa(((s_wallace_cla24_fa206_or0 >> 0) & 0x01), ((s_wallace_cla24_and_13_12 >> 0) & 0x01), ((s_wallace_cla24_and_12_13 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_13_13 = and_gate(((a >> 13) & 0x01), ((b >> 13) & 0x01));
|
|
s_wallace_cla24_and_12_14 = and_gate(((a >> 12) & 0x01), ((b >> 14) & 0x01));
|
|
s_wallace_cla24_fa208_xor1 = (fa(((s_wallace_cla24_fa207_or0 >> 0) & 0x01), ((s_wallace_cla24_and_13_13 >> 0) & 0x01), ((s_wallace_cla24_and_12_14 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa208_or0 = (fa(((s_wallace_cla24_fa207_or0 >> 0) & 0x01), ((s_wallace_cla24_and_13_13 >> 0) & 0x01), ((s_wallace_cla24_and_12_14 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_13_14 = and_gate(((a >> 13) & 0x01), ((b >> 14) & 0x01));
|
|
s_wallace_cla24_and_12_15 = and_gate(((a >> 12) & 0x01), ((b >> 15) & 0x01));
|
|
s_wallace_cla24_fa209_xor1 = (fa(((s_wallace_cla24_fa208_or0 >> 0) & 0x01), ((s_wallace_cla24_and_13_14 >> 0) & 0x01), ((s_wallace_cla24_and_12_15 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa209_or0 = (fa(((s_wallace_cla24_fa208_or0 >> 0) & 0x01), ((s_wallace_cla24_and_13_14 >> 0) & 0x01), ((s_wallace_cla24_and_12_15 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_13_15 = and_gate(((a >> 13) & 0x01), ((b >> 15) & 0x01));
|
|
s_wallace_cla24_and_12_16 = and_gate(((a >> 12) & 0x01), ((b >> 16) & 0x01));
|
|
s_wallace_cla24_fa210_xor1 = (fa(((s_wallace_cla24_fa209_or0 >> 0) & 0x01), ((s_wallace_cla24_and_13_15 >> 0) & 0x01), ((s_wallace_cla24_and_12_16 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa210_or0 = (fa(((s_wallace_cla24_fa209_or0 >> 0) & 0x01), ((s_wallace_cla24_and_13_15 >> 0) & 0x01), ((s_wallace_cla24_and_12_16 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_13_16 = and_gate(((a >> 13) & 0x01), ((b >> 16) & 0x01));
|
|
s_wallace_cla24_and_12_17 = and_gate(((a >> 12) & 0x01), ((b >> 17) & 0x01));
|
|
s_wallace_cla24_fa211_xor1 = (fa(((s_wallace_cla24_fa210_or0 >> 0) & 0x01), ((s_wallace_cla24_and_13_16 >> 0) & 0x01), ((s_wallace_cla24_and_12_17 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa211_or0 = (fa(((s_wallace_cla24_fa210_or0 >> 0) & 0x01), ((s_wallace_cla24_and_13_16 >> 0) & 0x01), ((s_wallace_cla24_and_12_17 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_13_17 = and_gate(((a >> 13) & 0x01), ((b >> 17) & 0x01));
|
|
s_wallace_cla24_and_12_18 = and_gate(((a >> 12) & 0x01), ((b >> 18) & 0x01));
|
|
s_wallace_cla24_fa212_xor1 = (fa(((s_wallace_cla24_fa211_or0 >> 0) & 0x01), ((s_wallace_cla24_and_13_17 >> 0) & 0x01), ((s_wallace_cla24_and_12_18 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa212_or0 = (fa(((s_wallace_cla24_fa211_or0 >> 0) & 0x01), ((s_wallace_cla24_and_13_17 >> 0) & 0x01), ((s_wallace_cla24_and_12_18 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_13_18 = and_gate(((a >> 13) & 0x01), ((b >> 18) & 0x01));
|
|
s_wallace_cla24_and_12_19 = and_gate(((a >> 12) & 0x01), ((b >> 19) & 0x01));
|
|
s_wallace_cla24_fa213_xor1 = (fa(((s_wallace_cla24_fa212_or0 >> 0) & 0x01), ((s_wallace_cla24_and_13_18 >> 0) & 0x01), ((s_wallace_cla24_and_12_19 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa213_or0 = (fa(((s_wallace_cla24_fa212_or0 >> 0) & 0x01), ((s_wallace_cla24_and_13_18 >> 0) & 0x01), ((s_wallace_cla24_and_12_19 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_13_19 = and_gate(((a >> 13) & 0x01), ((b >> 19) & 0x01));
|
|
s_wallace_cla24_and_12_20 = and_gate(((a >> 12) & 0x01), ((b >> 20) & 0x01));
|
|
s_wallace_cla24_fa214_xor1 = (fa(((s_wallace_cla24_fa213_or0 >> 0) & 0x01), ((s_wallace_cla24_and_13_19 >> 0) & 0x01), ((s_wallace_cla24_and_12_20 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa214_or0 = (fa(((s_wallace_cla24_fa213_or0 >> 0) & 0x01), ((s_wallace_cla24_and_13_19 >> 0) & 0x01), ((s_wallace_cla24_and_12_20 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_13_20 = and_gate(((a >> 13) & 0x01), ((b >> 20) & 0x01));
|
|
s_wallace_cla24_and_12_21 = and_gate(((a >> 12) & 0x01), ((b >> 21) & 0x01));
|
|
s_wallace_cla24_fa215_xor1 = (fa(((s_wallace_cla24_fa214_or0 >> 0) & 0x01), ((s_wallace_cla24_and_13_20 >> 0) & 0x01), ((s_wallace_cla24_and_12_21 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa215_or0 = (fa(((s_wallace_cla24_fa214_or0 >> 0) & 0x01), ((s_wallace_cla24_and_13_20 >> 0) & 0x01), ((s_wallace_cla24_and_12_21 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_13_21 = and_gate(((a >> 13) & 0x01), ((b >> 21) & 0x01));
|
|
s_wallace_cla24_and_12_22 = and_gate(((a >> 12) & 0x01), ((b >> 22) & 0x01));
|
|
s_wallace_cla24_fa216_xor1 = (fa(((s_wallace_cla24_fa215_or0 >> 0) & 0x01), ((s_wallace_cla24_and_13_21 >> 0) & 0x01), ((s_wallace_cla24_and_12_22 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa216_or0 = (fa(((s_wallace_cla24_fa215_or0 >> 0) & 0x01), ((s_wallace_cla24_and_13_21 >> 0) & 0x01), ((s_wallace_cla24_and_12_22 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_13_22 = and_gate(((a >> 13) & 0x01), ((b >> 22) & 0x01));
|
|
s_wallace_cla24_nand_12_23 = nand_gate(((a >> 12) & 0x01), ((b >> 23) & 0x01));
|
|
s_wallace_cla24_fa217_xor1 = (fa(((s_wallace_cla24_fa216_or0 >> 0) & 0x01), ((s_wallace_cla24_and_13_22 >> 0) & 0x01), ((s_wallace_cla24_nand_12_23 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa217_or0 = (fa(((s_wallace_cla24_fa216_or0 >> 0) & 0x01), ((s_wallace_cla24_and_13_22 >> 0) & 0x01), ((s_wallace_cla24_nand_12_23 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_nand_13_23 = nand_gate(((a >> 13) & 0x01), ((b >> 23) & 0x01));
|
|
s_wallace_cla24_fa218_xor1 = (fa(((s_wallace_cla24_fa217_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_13_23 >> 0) & 0x01), ((s_wallace_cla24_fa33_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa218_or0 = (fa(((s_wallace_cla24_fa217_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_13_23 >> 0) & 0x01), ((s_wallace_cla24_fa33_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa219_xor1 = (fa(((s_wallace_cla24_fa218_or0 >> 0) & 0x01), ((s_wallace_cla24_fa34_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa75_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa219_or0 = (fa(((s_wallace_cla24_fa218_or0 >> 0) & 0x01), ((s_wallace_cla24_fa34_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa75_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa220_xor1 = (fa(((s_wallace_cla24_fa219_or0 >> 0) & 0x01), ((s_wallace_cla24_fa76_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa115_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa220_or0 = (fa(((s_wallace_cla24_fa219_or0 >> 0) & 0x01), ((s_wallace_cla24_fa76_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa115_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa221_xor1 = (fa(((s_wallace_cla24_fa220_or0 >> 0) & 0x01), ((s_wallace_cla24_fa116_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa153_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa221_or0 = (fa(((s_wallace_cla24_fa220_or0 >> 0) & 0x01), ((s_wallace_cla24_fa116_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa153_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_ha6_xor0 = (ha(((s_wallace_cla24_fa122_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa157_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_ha6_and0 = (ha(((s_wallace_cla24_fa122_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa157_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa222_xor1 = (fa(((s_wallace_cla24_ha6_and0 >> 0) & 0x01), ((s_wallace_cla24_fa86_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa123_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa222_or0 = (fa(((s_wallace_cla24_ha6_and0 >> 0) & 0x01), ((s_wallace_cla24_fa86_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa123_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa223_xor1 = (fa(((s_wallace_cla24_fa222_or0 >> 0) & 0x01), ((s_wallace_cla24_fa48_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa87_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa223_or0 = (fa(((s_wallace_cla24_fa222_or0 >> 0) & 0x01), ((s_wallace_cla24_fa48_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa87_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa224_xor1 = (fa(((s_wallace_cla24_fa223_or0 >> 0) & 0x01), ((s_wallace_cla24_fa8_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa49_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa224_or0 = (fa(((s_wallace_cla24_fa223_or0 >> 0) & 0x01), ((s_wallace_cla24_fa8_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa49_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_0_12 = and_gate(((a >> 0) & 0x01), ((b >> 12) & 0x01));
|
|
s_wallace_cla24_fa225_xor1 = (fa(((s_wallace_cla24_fa224_or0 >> 0) & 0x01), ((s_wallace_cla24_and_0_12 >> 0) & 0x01), ((s_wallace_cla24_fa9_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa225_or0 = (fa(((s_wallace_cla24_fa224_or0 >> 0) & 0x01), ((s_wallace_cla24_and_0_12 >> 0) & 0x01), ((s_wallace_cla24_fa9_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_1_12 = and_gate(((a >> 1) & 0x01), ((b >> 12) & 0x01));
|
|
s_wallace_cla24_and_0_13 = and_gate(((a >> 0) & 0x01), ((b >> 13) & 0x01));
|
|
s_wallace_cla24_fa226_xor1 = (fa(((s_wallace_cla24_fa225_or0 >> 0) & 0x01), ((s_wallace_cla24_and_1_12 >> 0) & 0x01), ((s_wallace_cla24_and_0_13 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa226_or0 = (fa(((s_wallace_cla24_fa225_or0 >> 0) & 0x01), ((s_wallace_cla24_and_1_12 >> 0) & 0x01), ((s_wallace_cla24_and_0_13 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_2_12 = and_gate(((a >> 2) & 0x01), ((b >> 12) & 0x01));
|
|
s_wallace_cla24_and_1_13 = and_gate(((a >> 1) & 0x01), ((b >> 13) & 0x01));
|
|
s_wallace_cla24_fa227_xor1 = (fa(((s_wallace_cla24_fa226_or0 >> 0) & 0x01), ((s_wallace_cla24_and_2_12 >> 0) & 0x01), ((s_wallace_cla24_and_1_13 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa227_or0 = (fa(((s_wallace_cla24_fa226_or0 >> 0) & 0x01), ((s_wallace_cla24_and_2_12 >> 0) & 0x01), ((s_wallace_cla24_and_1_13 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_3_12 = and_gate(((a >> 3) & 0x01), ((b >> 12) & 0x01));
|
|
s_wallace_cla24_and_2_13 = and_gate(((a >> 2) & 0x01), ((b >> 13) & 0x01));
|
|
s_wallace_cla24_fa228_xor1 = (fa(((s_wallace_cla24_fa227_or0 >> 0) & 0x01), ((s_wallace_cla24_and_3_12 >> 0) & 0x01), ((s_wallace_cla24_and_2_13 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa228_or0 = (fa(((s_wallace_cla24_fa227_or0 >> 0) & 0x01), ((s_wallace_cla24_and_3_12 >> 0) & 0x01), ((s_wallace_cla24_and_2_13 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_4_12 = and_gate(((a >> 4) & 0x01), ((b >> 12) & 0x01));
|
|
s_wallace_cla24_and_3_13 = and_gate(((a >> 3) & 0x01), ((b >> 13) & 0x01));
|
|
s_wallace_cla24_fa229_xor1 = (fa(((s_wallace_cla24_fa228_or0 >> 0) & 0x01), ((s_wallace_cla24_and_4_12 >> 0) & 0x01), ((s_wallace_cla24_and_3_13 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa229_or0 = (fa(((s_wallace_cla24_fa228_or0 >> 0) & 0x01), ((s_wallace_cla24_and_4_12 >> 0) & 0x01), ((s_wallace_cla24_and_3_13 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_5_12 = and_gate(((a >> 5) & 0x01), ((b >> 12) & 0x01));
|
|
s_wallace_cla24_and_4_13 = and_gate(((a >> 4) & 0x01), ((b >> 13) & 0x01));
|
|
s_wallace_cla24_fa230_xor1 = (fa(((s_wallace_cla24_fa229_or0 >> 0) & 0x01), ((s_wallace_cla24_and_5_12 >> 0) & 0x01), ((s_wallace_cla24_and_4_13 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa230_or0 = (fa(((s_wallace_cla24_fa229_or0 >> 0) & 0x01), ((s_wallace_cla24_and_5_12 >> 0) & 0x01), ((s_wallace_cla24_and_4_13 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_6_12 = and_gate(((a >> 6) & 0x01), ((b >> 12) & 0x01));
|
|
s_wallace_cla24_and_5_13 = and_gate(((a >> 5) & 0x01), ((b >> 13) & 0x01));
|
|
s_wallace_cla24_fa231_xor1 = (fa(((s_wallace_cla24_fa230_or0 >> 0) & 0x01), ((s_wallace_cla24_and_6_12 >> 0) & 0x01), ((s_wallace_cla24_and_5_13 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa231_or0 = (fa(((s_wallace_cla24_fa230_or0 >> 0) & 0x01), ((s_wallace_cla24_and_6_12 >> 0) & 0x01), ((s_wallace_cla24_and_5_13 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_7_12 = and_gate(((a >> 7) & 0x01), ((b >> 12) & 0x01));
|
|
s_wallace_cla24_and_6_13 = and_gate(((a >> 6) & 0x01), ((b >> 13) & 0x01));
|
|
s_wallace_cla24_fa232_xor1 = (fa(((s_wallace_cla24_fa231_or0 >> 0) & 0x01), ((s_wallace_cla24_and_7_12 >> 0) & 0x01), ((s_wallace_cla24_and_6_13 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa232_or0 = (fa(((s_wallace_cla24_fa231_or0 >> 0) & 0x01), ((s_wallace_cla24_and_7_12 >> 0) & 0x01), ((s_wallace_cla24_and_6_13 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_8_12 = and_gate(((a >> 8) & 0x01), ((b >> 12) & 0x01));
|
|
s_wallace_cla24_and_7_13 = and_gate(((a >> 7) & 0x01), ((b >> 13) & 0x01));
|
|
s_wallace_cla24_fa233_xor1 = (fa(((s_wallace_cla24_fa232_or0 >> 0) & 0x01), ((s_wallace_cla24_and_8_12 >> 0) & 0x01), ((s_wallace_cla24_and_7_13 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa233_or0 = (fa(((s_wallace_cla24_fa232_or0 >> 0) & 0x01), ((s_wallace_cla24_and_8_12 >> 0) & 0x01), ((s_wallace_cla24_and_7_13 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_9_12 = and_gate(((a >> 9) & 0x01), ((b >> 12) & 0x01));
|
|
s_wallace_cla24_and_8_13 = and_gate(((a >> 8) & 0x01), ((b >> 13) & 0x01));
|
|
s_wallace_cla24_fa234_xor1 = (fa(((s_wallace_cla24_fa233_or0 >> 0) & 0x01), ((s_wallace_cla24_and_9_12 >> 0) & 0x01), ((s_wallace_cla24_and_8_13 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa234_or0 = (fa(((s_wallace_cla24_fa233_or0 >> 0) & 0x01), ((s_wallace_cla24_and_9_12 >> 0) & 0x01), ((s_wallace_cla24_and_8_13 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_10_12 = and_gate(((a >> 10) & 0x01), ((b >> 12) & 0x01));
|
|
s_wallace_cla24_and_9_13 = and_gate(((a >> 9) & 0x01), ((b >> 13) & 0x01));
|
|
s_wallace_cla24_fa235_xor1 = (fa(((s_wallace_cla24_fa234_or0 >> 0) & 0x01), ((s_wallace_cla24_and_10_12 >> 0) & 0x01), ((s_wallace_cla24_and_9_13 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa235_or0 = (fa(((s_wallace_cla24_fa234_or0 >> 0) & 0x01), ((s_wallace_cla24_and_10_12 >> 0) & 0x01), ((s_wallace_cla24_and_9_13 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_11_12 = and_gate(((a >> 11) & 0x01), ((b >> 12) & 0x01));
|
|
s_wallace_cla24_and_10_13 = and_gate(((a >> 10) & 0x01), ((b >> 13) & 0x01));
|
|
s_wallace_cla24_fa236_xor1 = (fa(((s_wallace_cla24_fa235_or0 >> 0) & 0x01), ((s_wallace_cla24_and_11_12 >> 0) & 0x01), ((s_wallace_cla24_and_10_13 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa236_or0 = (fa(((s_wallace_cla24_fa235_or0 >> 0) & 0x01), ((s_wallace_cla24_and_11_12 >> 0) & 0x01), ((s_wallace_cla24_and_10_13 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_12_12 = and_gate(((a >> 12) & 0x01), ((b >> 12) & 0x01));
|
|
s_wallace_cla24_and_11_13 = and_gate(((a >> 11) & 0x01), ((b >> 13) & 0x01));
|
|
s_wallace_cla24_fa237_xor1 = (fa(((s_wallace_cla24_fa236_or0 >> 0) & 0x01), ((s_wallace_cla24_and_12_12 >> 0) & 0x01), ((s_wallace_cla24_and_11_13 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa237_or0 = (fa(((s_wallace_cla24_fa236_or0 >> 0) & 0x01), ((s_wallace_cla24_and_12_12 >> 0) & 0x01), ((s_wallace_cla24_and_11_13 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_11_14 = and_gate(((a >> 11) & 0x01), ((b >> 14) & 0x01));
|
|
s_wallace_cla24_and_10_15 = and_gate(((a >> 10) & 0x01), ((b >> 15) & 0x01));
|
|
s_wallace_cla24_fa238_xor1 = (fa(((s_wallace_cla24_fa237_or0 >> 0) & 0x01), ((s_wallace_cla24_and_11_14 >> 0) & 0x01), ((s_wallace_cla24_and_10_15 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa238_or0 = (fa(((s_wallace_cla24_fa237_or0 >> 0) & 0x01), ((s_wallace_cla24_and_11_14 >> 0) & 0x01), ((s_wallace_cla24_and_10_15 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_11_15 = and_gate(((a >> 11) & 0x01), ((b >> 15) & 0x01));
|
|
s_wallace_cla24_and_10_16 = and_gate(((a >> 10) & 0x01), ((b >> 16) & 0x01));
|
|
s_wallace_cla24_fa239_xor1 = (fa(((s_wallace_cla24_fa238_or0 >> 0) & 0x01), ((s_wallace_cla24_and_11_15 >> 0) & 0x01), ((s_wallace_cla24_and_10_16 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa239_or0 = (fa(((s_wallace_cla24_fa238_or0 >> 0) & 0x01), ((s_wallace_cla24_and_11_15 >> 0) & 0x01), ((s_wallace_cla24_and_10_16 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_11_16 = and_gate(((a >> 11) & 0x01), ((b >> 16) & 0x01));
|
|
s_wallace_cla24_and_10_17 = and_gate(((a >> 10) & 0x01), ((b >> 17) & 0x01));
|
|
s_wallace_cla24_fa240_xor1 = (fa(((s_wallace_cla24_fa239_or0 >> 0) & 0x01), ((s_wallace_cla24_and_11_16 >> 0) & 0x01), ((s_wallace_cla24_and_10_17 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa240_or0 = (fa(((s_wallace_cla24_fa239_or0 >> 0) & 0x01), ((s_wallace_cla24_and_11_16 >> 0) & 0x01), ((s_wallace_cla24_and_10_17 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_11_17 = and_gate(((a >> 11) & 0x01), ((b >> 17) & 0x01));
|
|
s_wallace_cla24_and_10_18 = and_gate(((a >> 10) & 0x01), ((b >> 18) & 0x01));
|
|
s_wallace_cla24_fa241_xor1 = (fa(((s_wallace_cla24_fa240_or0 >> 0) & 0x01), ((s_wallace_cla24_and_11_17 >> 0) & 0x01), ((s_wallace_cla24_and_10_18 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa241_or0 = (fa(((s_wallace_cla24_fa240_or0 >> 0) & 0x01), ((s_wallace_cla24_and_11_17 >> 0) & 0x01), ((s_wallace_cla24_and_10_18 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_11_18 = and_gate(((a >> 11) & 0x01), ((b >> 18) & 0x01));
|
|
s_wallace_cla24_and_10_19 = and_gate(((a >> 10) & 0x01), ((b >> 19) & 0x01));
|
|
s_wallace_cla24_fa242_xor1 = (fa(((s_wallace_cla24_fa241_or0 >> 0) & 0x01), ((s_wallace_cla24_and_11_18 >> 0) & 0x01), ((s_wallace_cla24_and_10_19 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa242_or0 = (fa(((s_wallace_cla24_fa241_or0 >> 0) & 0x01), ((s_wallace_cla24_and_11_18 >> 0) & 0x01), ((s_wallace_cla24_and_10_19 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_11_19 = and_gate(((a >> 11) & 0x01), ((b >> 19) & 0x01));
|
|
s_wallace_cla24_and_10_20 = and_gate(((a >> 10) & 0x01), ((b >> 20) & 0x01));
|
|
s_wallace_cla24_fa243_xor1 = (fa(((s_wallace_cla24_fa242_or0 >> 0) & 0x01), ((s_wallace_cla24_and_11_19 >> 0) & 0x01), ((s_wallace_cla24_and_10_20 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa243_or0 = (fa(((s_wallace_cla24_fa242_or0 >> 0) & 0x01), ((s_wallace_cla24_and_11_19 >> 0) & 0x01), ((s_wallace_cla24_and_10_20 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_11_20 = and_gate(((a >> 11) & 0x01), ((b >> 20) & 0x01));
|
|
s_wallace_cla24_and_10_21 = and_gate(((a >> 10) & 0x01), ((b >> 21) & 0x01));
|
|
s_wallace_cla24_fa244_xor1 = (fa(((s_wallace_cla24_fa243_or0 >> 0) & 0x01), ((s_wallace_cla24_and_11_20 >> 0) & 0x01), ((s_wallace_cla24_and_10_21 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa244_or0 = (fa(((s_wallace_cla24_fa243_or0 >> 0) & 0x01), ((s_wallace_cla24_and_11_20 >> 0) & 0x01), ((s_wallace_cla24_and_10_21 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_11_21 = and_gate(((a >> 11) & 0x01), ((b >> 21) & 0x01));
|
|
s_wallace_cla24_and_10_22 = and_gate(((a >> 10) & 0x01), ((b >> 22) & 0x01));
|
|
s_wallace_cla24_fa245_xor1 = (fa(((s_wallace_cla24_fa244_or0 >> 0) & 0x01), ((s_wallace_cla24_and_11_21 >> 0) & 0x01), ((s_wallace_cla24_and_10_22 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa245_or0 = (fa(((s_wallace_cla24_fa244_or0 >> 0) & 0x01), ((s_wallace_cla24_and_11_21 >> 0) & 0x01), ((s_wallace_cla24_and_10_22 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_11_22 = and_gate(((a >> 11) & 0x01), ((b >> 22) & 0x01));
|
|
s_wallace_cla24_nand_10_23 = nand_gate(((a >> 10) & 0x01), ((b >> 23) & 0x01));
|
|
s_wallace_cla24_fa246_xor1 = (fa(((s_wallace_cla24_fa245_or0 >> 0) & 0x01), ((s_wallace_cla24_and_11_22 >> 0) & 0x01), ((s_wallace_cla24_nand_10_23 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa246_or0 = (fa(((s_wallace_cla24_fa245_or0 >> 0) & 0x01), ((s_wallace_cla24_and_11_22 >> 0) & 0x01), ((s_wallace_cla24_nand_10_23 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_nand_11_23 = nand_gate(((a >> 11) & 0x01), ((b >> 23) & 0x01));
|
|
s_wallace_cla24_fa247_xor1 = (fa(((s_wallace_cla24_fa246_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_11_23 >> 0) & 0x01), ((s_wallace_cla24_fa31_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa247_or0 = (fa(((s_wallace_cla24_fa246_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_11_23 >> 0) & 0x01), ((s_wallace_cla24_fa31_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa248_xor1 = (fa(((s_wallace_cla24_fa247_or0 >> 0) & 0x01), ((s_wallace_cla24_fa32_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa73_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa248_or0 = (fa(((s_wallace_cla24_fa247_or0 >> 0) & 0x01), ((s_wallace_cla24_fa32_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa73_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa249_xor1 = (fa(((s_wallace_cla24_fa248_or0 >> 0) & 0x01), ((s_wallace_cla24_fa74_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa113_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa249_or0 = (fa(((s_wallace_cla24_fa248_or0 >> 0) & 0x01), ((s_wallace_cla24_fa74_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa113_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa250_xor1 = (fa(((s_wallace_cla24_fa249_or0 >> 0) & 0x01), ((s_wallace_cla24_fa114_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa151_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa250_or0 = (fa(((s_wallace_cla24_fa249_or0 >> 0) & 0x01), ((s_wallace_cla24_fa114_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa151_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa251_xor1 = (fa(((s_wallace_cla24_fa250_or0 >> 0) & 0x01), ((s_wallace_cla24_fa152_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa187_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa251_or0 = (fa(((s_wallace_cla24_fa250_or0 >> 0) & 0x01), ((s_wallace_cla24_fa152_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa187_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_ha7_xor0 = (ha(((s_wallace_cla24_fa158_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa191_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_ha7_and0 = (ha(((s_wallace_cla24_fa158_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa191_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa252_xor1 = (fa(((s_wallace_cla24_ha7_and0 >> 0) & 0x01), ((s_wallace_cla24_fa124_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa159_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa252_or0 = (fa(((s_wallace_cla24_ha7_and0 >> 0) & 0x01), ((s_wallace_cla24_fa124_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa159_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa253_xor1 = (fa(((s_wallace_cla24_fa252_or0 >> 0) & 0x01), ((s_wallace_cla24_fa88_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa125_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa253_or0 = (fa(((s_wallace_cla24_fa252_or0 >> 0) & 0x01), ((s_wallace_cla24_fa88_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa125_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa254_xor1 = (fa(((s_wallace_cla24_fa253_or0 >> 0) & 0x01), ((s_wallace_cla24_fa50_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa89_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa254_or0 = (fa(((s_wallace_cla24_fa253_or0 >> 0) & 0x01), ((s_wallace_cla24_fa50_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa89_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa255_xor1 = (fa(((s_wallace_cla24_fa254_or0 >> 0) & 0x01), ((s_wallace_cla24_fa10_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa51_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa255_or0 = (fa(((s_wallace_cla24_fa254_or0 >> 0) & 0x01), ((s_wallace_cla24_fa10_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa51_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_0_14 = and_gate(((a >> 0) & 0x01), ((b >> 14) & 0x01));
|
|
s_wallace_cla24_fa256_xor1 = (fa(((s_wallace_cla24_fa255_or0 >> 0) & 0x01), ((s_wallace_cla24_and_0_14 >> 0) & 0x01), ((s_wallace_cla24_fa11_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa256_or0 = (fa(((s_wallace_cla24_fa255_or0 >> 0) & 0x01), ((s_wallace_cla24_and_0_14 >> 0) & 0x01), ((s_wallace_cla24_fa11_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_1_14 = and_gate(((a >> 1) & 0x01), ((b >> 14) & 0x01));
|
|
s_wallace_cla24_and_0_15 = and_gate(((a >> 0) & 0x01), ((b >> 15) & 0x01));
|
|
s_wallace_cla24_fa257_xor1 = (fa(((s_wallace_cla24_fa256_or0 >> 0) & 0x01), ((s_wallace_cla24_and_1_14 >> 0) & 0x01), ((s_wallace_cla24_and_0_15 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa257_or0 = (fa(((s_wallace_cla24_fa256_or0 >> 0) & 0x01), ((s_wallace_cla24_and_1_14 >> 0) & 0x01), ((s_wallace_cla24_and_0_15 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_2_14 = and_gate(((a >> 2) & 0x01), ((b >> 14) & 0x01));
|
|
s_wallace_cla24_and_1_15 = and_gate(((a >> 1) & 0x01), ((b >> 15) & 0x01));
|
|
s_wallace_cla24_fa258_xor1 = (fa(((s_wallace_cla24_fa257_or0 >> 0) & 0x01), ((s_wallace_cla24_and_2_14 >> 0) & 0x01), ((s_wallace_cla24_and_1_15 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa258_or0 = (fa(((s_wallace_cla24_fa257_or0 >> 0) & 0x01), ((s_wallace_cla24_and_2_14 >> 0) & 0x01), ((s_wallace_cla24_and_1_15 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_3_14 = and_gate(((a >> 3) & 0x01), ((b >> 14) & 0x01));
|
|
s_wallace_cla24_and_2_15 = and_gate(((a >> 2) & 0x01), ((b >> 15) & 0x01));
|
|
s_wallace_cla24_fa259_xor1 = (fa(((s_wallace_cla24_fa258_or0 >> 0) & 0x01), ((s_wallace_cla24_and_3_14 >> 0) & 0x01), ((s_wallace_cla24_and_2_15 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa259_or0 = (fa(((s_wallace_cla24_fa258_or0 >> 0) & 0x01), ((s_wallace_cla24_and_3_14 >> 0) & 0x01), ((s_wallace_cla24_and_2_15 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_4_14 = and_gate(((a >> 4) & 0x01), ((b >> 14) & 0x01));
|
|
s_wallace_cla24_and_3_15 = and_gate(((a >> 3) & 0x01), ((b >> 15) & 0x01));
|
|
s_wallace_cla24_fa260_xor1 = (fa(((s_wallace_cla24_fa259_or0 >> 0) & 0x01), ((s_wallace_cla24_and_4_14 >> 0) & 0x01), ((s_wallace_cla24_and_3_15 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa260_or0 = (fa(((s_wallace_cla24_fa259_or0 >> 0) & 0x01), ((s_wallace_cla24_and_4_14 >> 0) & 0x01), ((s_wallace_cla24_and_3_15 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_5_14 = and_gate(((a >> 5) & 0x01), ((b >> 14) & 0x01));
|
|
s_wallace_cla24_and_4_15 = and_gate(((a >> 4) & 0x01), ((b >> 15) & 0x01));
|
|
s_wallace_cla24_fa261_xor1 = (fa(((s_wallace_cla24_fa260_or0 >> 0) & 0x01), ((s_wallace_cla24_and_5_14 >> 0) & 0x01), ((s_wallace_cla24_and_4_15 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa261_or0 = (fa(((s_wallace_cla24_fa260_or0 >> 0) & 0x01), ((s_wallace_cla24_and_5_14 >> 0) & 0x01), ((s_wallace_cla24_and_4_15 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_6_14 = and_gate(((a >> 6) & 0x01), ((b >> 14) & 0x01));
|
|
s_wallace_cla24_and_5_15 = and_gate(((a >> 5) & 0x01), ((b >> 15) & 0x01));
|
|
s_wallace_cla24_fa262_xor1 = (fa(((s_wallace_cla24_fa261_or0 >> 0) & 0x01), ((s_wallace_cla24_and_6_14 >> 0) & 0x01), ((s_wallace_cla24_and_5_15 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa262_or0 = (fa(((s_wallace_cla24_fa261_or0 >> 0) & 0x01), ((s_wallace_cla24_and_6_14 >> 0) & 0x01), ((s_wallace_cla24_and_5_15 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_7_14 = and_gate(((a >> 7) & 0x01), ((b >> 14) & 0x01));
|
|
s_wallace_cla24_and_6_15 = and_gate(((a >> 6) & 0x01), ((b >> 15) & 0x01));
|
|
s_wallace_cla24_fa263_xor1 = (fa(((s_wallace_cla24_fa262_or0 >> 0) & 0x01), ((s_wallace_cla24_and_7_14 >> 0) & 0x01), ((s_wallace_cla24_and_6_15 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa263_or0 = (fa(((s_wallace_cla24_fa262_or0 >> 0) & 0x01), ((s_wallace_cla24_and_7_14 >> 0) & 0x01), ((s_wallace_cla24_and_6_15 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_8_14 = and_gate(((a >> 8) & 0x01), ((b >> 14) & 0x01));
|
|
s_wallace_cla24_and_7_15 = and_gate(((a >> 7) & 0x01), ((b >> 15) & 0x01));
|
|
s_wallace_cla24_fa264_xor1 = (fa(((s_wallace_cla24_fa263_or0 >> 0) & 0x01), ((s_wallace_cla24_and_8_14 >> 0) & 0x01), ((s_wallace_cla24_and_7_15 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa264_or0 = (fa(((s_wallace_cla24_fa263_or0 >> 0) & 0x01), ((s_wallace_cla24_and_8_14 >> 0) & 0x01), ((s_wallace_cla24_and_7_15 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_9_14 = and_gate(((a >> 9) & 0x01), ((b >> 14) & 0x01));
|
|
s_wallace_cla24_and_8_15 = and_gate(((a >> 8) & 0x01), ((b >> 15) & 0x01));
|
|
s_wallace_cla24_fa265_xor1 = (fa(((s_wallace_cla24_fa264_or0 >> 0) & 0x01), ((s_wallace_cla24_and_9_14 >> 0) & 0x01), ((s_wallace_cla24_and_8_15 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa265_or0 = (fa(((s_wallace_cla24_fa264_or0 >> 0) & 0x01), ((s_wallace_cla24_and_9_14 >> 0) & 0x01), ((s_wallace_cla24_and_8_15 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_10_14 = and_gate(((a >> 10) & 0x01), ((b >> 14) & 0x01));
|
|
s_wallace_cla24_and_9_15 = and_gate(((a >> 9) & 0x01), ((b >> 15) & 0x01));
|
|
s_wallace_cla24_fa266_xor1 = (fa(((s_wallace_cla24_fa265_or0 >> 0) & 0x01), ((s_wallace_cla24_and_10_14 >> 0) & 0x01), ((s_wallace_cla24_and_9_15 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa266_or0 = (fa(((s_wallace_cla24_fa265_or0 >> 0) & 0x01), ((s_wallace_cla24_and_10_14 >> 0) & 0x01), ((s_wallace_cla24_and_9_15 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_9_16 = and_gate(((a >> 9) & 0x01), ((b >> 16) & 0x01));
|
|
s_wallace_cla24_and_8_17 = and_gate(((a >> 8) & 0x01), ((b >> 17) & 0x01));
|
|
s_wallace_cla24_fa267_xor1 = (fa(((s_wallace_cla24_fa266_or0 >> 0) & 0x01), ((s_wallace_cla24_and_9_16 >> 0) & 0x01), ((s_wallace_cla24_and_8_17 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa267_or0 = (fa(((s_wallace_cla24_fa266_or0 >> 0) & 0x01), ((s_wallace_cla24_and_9_16 >> 0) & 0x01), ((s_wallace_cla24_and_8_17 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_9_17 = and_gate(((a >> 9) & 0x01), ((b >> 17) & 0x01));
|
|
s_wallace_cla24_and_8_18 = and_gate(((a >> 8) & 0x01), ((b >> 18) & 0x01));
|
|
s_wallace_cla24_fa268_xor1 = (fa(((s_wallace_cla24_fa267_or0 >> 0) & 0x01), ((s_wallace_cla24_and_9_17 >> 0) & 0x01), ((s_wallace_cla24_and_8_18 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa268_or0 = (fa(((s_wallace_cla24_fa267_or0 >> 0) & 0x01), ((s_wallace_cla24_and_9_17 >> 0) & 0x01), ((s_wallace_cla24_and_8_18 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_9_18 = and_gate(((a >> 9) & 0x01), ((b >> 18) & 0x01));
|
|
s_wallace_cla24_and_8_19 = and_gate(((a >> 8) & 0x01), ((b >> 19) & 0x01));
|
|
s_wallace_cla24_fa269_xor1 = (fa(((s_wallace_cla24_fa268_or0 >> 0) & 0x01), ((s_wallace_cla24_and_9_18 >> 0) & 0x01), ((s_wallace_cla24_and_8_19 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa269_or0 = (fa(((s_wallace_cla24_fa268_or0 >> 0) & 0x01), ((s_wallace_cla24_and_9_18 >> 0) & 0x01), ((s_wallace_cla24_and_8_19 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_9_19 = and_gate(((a >> 9) & 0x01), ((b >> 19) & 0x01));
|
|
s_wallace_cla24_and_8_20 = and_gate(((a >> 8) & 0x01), ((b >> 20) & 0x01));
|
|
s_wallace_cla24_fa270_xor1 = (fa(((s_wallace_cla24_fa269_or0 >> 0) & 0x01), ((s_wallace_cla24_and_9_19 >> 0) & 0x01), ((s_wallace_cla24_and_8_20 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa270_or0 = (fa(((s_wallace_cla24_fa269_or0 >> 0) & 0x01), ((s_wallace_cla24_and_9_19 >> 0) & 0x01), ((s_wallace_cla24_and_8_20 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_9_20 = and_gate(((a >> 9) & 0x01), ((b >> 20) & 0x01));
|
|
s_wallace_cla24_and_8_21 = and_gate(((a >> 8) & 0x01), ((b >> 21) & 0x01));
|
|
s_wallace_cla24_fa271_xor1 = (fa(((s_wallace_cla24_fa270_or0 >> 0) & 0x01), ((s_wallace_cla24_and_9_20 >> 0) & 0x01), ((s_wallace_cla24_and_8_21 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa271_or0 = (fa(((s_wallace_cla24_fa270_or0 >> 0) & 0x01), ((s_wallace_cla24_and_9_20 >> 0) & 0x01), ((s_wallace_cla24_and_8_21 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_9_21 = and_gate(((a >> 9) & 0x01), ((b >> 21) & 0x01));
|
|
s_wallace_cla24_and_8_22 = and_gate(((a >> 8) & 0x01), ((b >> 22) & 0x01));
|
|
s_wallace_cla24_fa272_xor1 = (fa(((s_wallace_cla24_fa271_or0 >> 0) & 0x01), ((s_wallace_cla24_and_9_21 >> 0) & 0x01), ((s_wallace_cla24_and_8_22 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa272_or0 = (fa(((s_wallace_cla24_fa271_or0 >> 0) & 0x01), ((s_wallace_cla24_and_9_21 >> 0) & 0x01), ((s_wallace_cla24_and_8_22 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_9_22 = and_gate(((a >> 9) & 0x01), ((b >> 22) & 0x01));
|
|
s_wallace_cla24_nand_8_23 = nand_gate(((a >> 8) & 0x01), ((b >> 23) & 0x01));
|
|
s_wallace_cla24_fa273_xor1 = (fa(((s_wallace_cla24_fa272_or0 >> 0) & 0x01), ((s_wallace_cla24_and_9_22 >> 0) & 0x01), ((s_wallace_cla24_nand_8_23 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa273_or0 = (fa(((s_wallace_cla24_fa272_or0 >> 0) & 0x01), ((s_wallace_cla24_and_9_22 >> 0) & 0x01), ((s_wallace_cla24_nand_8_23 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_nand_9_23 = nand_gate(((a >> 9) & 0x01), ((b >> 23) & 0x01));
|
|
s_wallace_cla24_fa274_xor1 = (fa(((s_wallace_cla24_fa273_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_9_23 >> 0) & 0x01), ((s_wallace_cla24_fa29_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa274_or0 = (fa(((s_wallace_cla24_fa273_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_9_23 >> 0) & 0x01), ((s_wallace_cla24_fa29_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa275_xor1 = (fa(((s_wallace_cla24_fa274_or0 >> 0) & 0x01), ((s_wallace_cla24_fa30_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa71_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa275_or0 = (fa(((s_wallace_cla24_fa274_or0 >> 0) & 0x01), ((s_wallace_cla24_fa30_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa71_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa276_xor1 = (fa(((s_wallace_cla24_fa275_or0 >> 0) & 0x01), ((s_wallace_cla24_fa72_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa111_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa276_or0 = (fa(((s_wallace_cla24_fa275_or0 >> 0) & 0x01), ((s_wallace_cla24_fa72_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa111_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa277_xor1 = (fa(((s_wallace_cla24_fa276_or0 >> 0) & 0x01), ((s_wallace_cla24_fa112_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa149_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa277_or0 = (fa(((s_wallace_cla24_fa276_or0 >> 0) & 0x01), ((s_wallace_cla24_fa112_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa149_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa278_xor1 = (fa(((s_wallace_cla24_fa277_or0 >> 0) & 0x01), ((s_wallace_cla24_fa150_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa185_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa278_or0 = (fa(((s_wallace_cla24_fa277_or0 >> 0) & 0x01), ((s_wallace_cla24_fa150_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa185_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa279_xor1 = (fa(((s_wallace_cla24_fa278_or0 >> 0) & 0x01), ((s_wallace_cla24_fa186_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa219_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa279_or0 = (fa(((s_wallace_cla24_fa278_or0 >> 0) & 0x01), ((s_wallace_cla24_fa186_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa219_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_ha8_xor0 = (ha(((s_wallace_cla24_fa192_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa223_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_ha8_and0 = (ha(((s_wallace_cla24_fa192_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa223_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa280_xor1 = (fa(((s_wallace_cla24_ha8_and0 >> 0) & 0x01), ((s_wallace_cla24_fa160_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa193_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa280_or0 = (fa(((s_wallace_cla24_ha8_and0 >> 0) & 0x01), ((s_wallace_cla24_fa160_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa193_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa281_xor1 = (fa(((s_wallace_cla24_fa280_or0 >> 0) & 0x01), ((s_wallace_cla24_fa126_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa161_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa281_or0 = (fa(((s_wallace_cla24_fa280_or0 >> 0) & 0x01), ((s_wallace_cla24_fa126_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa161_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa282_xor1 = (fa(((s_wallace_cla24_fa281_or0 >> 0) & 0x01), ((s_wallace_cla24_fa90_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa127_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa282_or0 = (fa(((s_wallace_cla24_fa281_or0 >> 0) & 0x01), ((s_wallace_cla24_fa90_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa127_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa283_xor1 = (fa(((s_wallace_cla24_fa282_or0 >> 0) & 0x01), ((s_wallace_cla24_fa52_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa91_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa283_or0 = (fa(((s_wallace_cla24_fa282_or0 >> 0) & 0x01), ((s_wallace_cla24_fa52_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa91_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa284_xor1 = (fa(((s_wallace_cla24_fa283_or0 >> 0) & 0x01), ((s_wallace_cla24_fa12_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa53_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa284_or0 = (fa(((s_wallace_cla24_fa283_or0 >> 0) & 0x01), ((s_wallace_cla24_fa12_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa53_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_0_16 = and_gate(((a >> 0) & 0x01), ((b >> 16) & 0x01));
|
|
s_wallace_cla24_fa285_xor1 = (fa(((s_wallace_cla24_fa284_or0 >> 0) & 0x01), ((s_wallace_cla24_and_0_16 >> 0) & 0x01), ((s_wallace_cla24_fa13_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa285_or0 = (fa(((s_wallace_cla24_fa284_or0 >> 0) & 0x01), ((s_wallace_cla24_and_0_16 >> 0) & 0x01), ((s_wallace_cla24_fa13_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_1_16 = and_gate(((a >> 1) & 0x01), ((b >> 16) & 0x01));
|
|
s_wallace_cla24_and_0_17 = and_gate(((a >> 0) & 0x01), ((b >> 17) & 0x01));
|
|
s_wallace_cla24_fa286_xor1 = (fa(((s_wallace_cla24_fa285_or0 >> 0) & 0x01), ((s_wallace_cla24_and_1_16 >> 0) & 0x01), ((s_wallace_cla24_and_0_17 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa286_or0 = (fa(((s_wallace_cla24_fa285_or0 >> 0) & 0x01), ((s_wallace_cla24_and_1_16 >> 0) & 0x01), ((s_wallace_cla24_and_0_17 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_2_16 = and_gate(((a >> 2) & 0x01), ((b >> 16) & 0x01));
|
|
s_wallace_cla24_and_1_17 = and_gate(((a >> 1) & 0x01), ((b >> 17) & 0x01));
|
|
s_wallace_cla24_fa287_xor1 = (fa(((s_wallace_cla24_fa286_or0 >> 0) & 0x01), ((s_wallace_cla24_and_2_16 >> 0) & 0x01), ((s_wallace_cla24_and_1_17 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa287_or0 = (fa(((s_wallace_cla24_fa286_or0 >> 0) & 0x01), ((s_wallace_cla24_and_2_16 >> 0) & 0x01), ((s_wallace_cla24_and_1_17 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_3_16 = and_gate(((a >> 3) & 0x01), ((b >> 16) & 0x01));
|
|
s_wallace_cla24_and_2_17 = and_gate(((a >> 2) & 0x01), ((b >> 17) & 0x01));
|
|
s_wallace_cla24_fa288_xor1 = (fa(((s_wallace_cla24_fa287_or0 >> 0) & 0x01), ((s_wallace_cla24_and_3_16 >> 0) & 0x01), ((s_wallace_cla24_and_2_17 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa288_or0 = (fa(((s_wallace_cla24_fa287_or0 >> 0) & 0x01), ((s_wallace_cla24_and_3_16 >> 0) & 0x01), ((s_wallace_cla24_and_2_17 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_4_16 = and_gate(((a >> 4) & 0x01), ((b >> 16) & 0x01));
|
|
s_wallace_cla24_and_3_17 = and_gate(((a >> 3) & 0x01), ((b >> 17) & 0x01));
|
|
s_wallace_cla24_fa289_xor1 = (fa(((s_wallace_cla24_fa288_or0 >> 0) & 0x01), ((s_wallace_cla24_and_4_16 >> 0) & 0x01), ((s_wallace_cla24_and_3_17 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa289_or0 = (fa(((s_wallace_cla24_fa288_or0 >> 0) & 0x01), ((s_wallace_cla24_and_4_16 >> 0) & 0x01), ((s_wallace_cla24_and_3_17 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_5_16 = and_gate(((a >> 5) & 0x01), ((b >> 16) & 0x01));
|
|
s_wallace_cla24_and_4_17 = and_gate(((a >> 4) & 0x01), ((b >> 17) & 0x01));
|
|
s_wallace_cla24_fa290_xor1 = (fa(((s_wallace_cla24_fa289_or0 >> 0) & 0x01), ((s_wallace_cla24_and_5_16 >> 0) & 0x01), ((s_wallace_cla24_and_4_17 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa290_or0 = (fa(((s_wallace_cla24_fa289_or0 >> 0) & 0x01), ((s_wallace_cla24_and_5_16 >> 0) & 0x01), ((s_wallace_cla24_and_4_17 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_6_16 = and_gate(((a >> 6) & 0x01), ((b >> 16) & 0x01));
|
|
s_wallace_cla24_and_5_17 = and_gate(((a >> 5) & 0x01), ((b >> 17) & 0x01));
|
|
s_wallace_cla24_fa291_xor1 = (fa(((s_wallace_cla24_fa290_or0 >> 0) & 0x01), ((s_wallace_cla24_and_6_16 >> 0) & 0x01), ((s_wallace_cla24_and_5_17 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa291_or0 = (fa(((s_wallace_cla24_fa290_or0 >> 0) & 0x01), ((s_wallace_cla24_and_6_16 >> 0) & 0x01), ((s_wallace_cla24_and_5_17 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_7_16 = and_gate(((a >> 7) & 0x01), ((b >> 16) & 0x01));
|
|
s_wallace_cla24_and_6_17 = and_gate(((a >> 6) & 0x01), ((b >> 17) & 0x01));
|
|
s_wallace_cla24_fa292_xor1 = (fa(((s_wallace_cla24_fa291_or0 >> 0) & 0x01), ((s_wallace_cla24_and_7_16 >> 0) & 0x01), ((s_wallace_cla24_and_6_17 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa292_or0 = (fa(((s_wallace_cla24_fa291_or0 >> 0) & 0x01), ((s_wallace_cla24_and_7_16 >> 0) & 0x01), ((s_wallace_cla24_and_6_17 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_8_16 = and_gate(((a >> 8) & 0x01), ((b >> 16) & 0x01));
|
|
s_wallace_cla24_and_7_17 = and_gate(((a >> 7) & 0x01), ((b >> 17) & 0x01));
|
|
s_wallace_cla24_fa293_xor1 = (fa(((s_wallace_cla24_fa292_or0 >> 0) & 0x01), ((s_wallace_cla24_and_8_16 >> 0) & 0x01), ((s_wallace_cla24_and_7_17 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa293_or0 = (fa(((s_wallace_cla24_fa292_or0 >> 0) & 0x01), ((s_wallace_cla24_and_8_16 >> 0) & 0x01), ((s_wallace_cla24_and_7_17 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_7_18 = and_gate(((a >> 7) & 0x01), ((b >> 18) & 0x01));
|
|
s_wallace_cla24_and_6_19 = and_gate(((a >> 6) & 0x01), ((b >> 19) & 0x01));
|
|
s_wallace_cla24_fa294_xor1 = (fa(((s_wallace_cla24_fa293_or0 >> 0) & 0x01), ((s_wallace_cla24_and_7_18 >> 0) & 0x01), ((s_wallace_cla24_and_6_19 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa294_or0 = (fa(((s_wallace_cla24_fa293_or0 >> 0) & 0x01), ((s_wallace_cla24_and_7_18 >> 0) & 0x01), ((s_wallace_cla24_and_6_19 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_7_19 = and_gate(((a >> 7) & 0x01), ((b >> 19) & 0x01));
|
|
s_wallace_cla24_and_6_20 = and_gate(((a >> 6) & 0x01), ((b >> 20) & 0x01));
|
|
s_wallace_cla24_fa295_xor1 = (fa(((s_wallace_cla24_fa294_or0 >> 0) & 0x01), ((s_wallace_cla24_and_7_19 >> 0) & 0x01), ((s_wallace_cla24_and_6_20 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa295_or0 = (fa(((s_wallace_cla24_fa294_or0 >> 0) & 0x01), ((s_wallace_cla24_and_7_19 >> 0) & 0x01), ((s_wallace_cla24_and_6_20 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_7_20 = and_gate(((a >> 7) & 0x01), ((b >> 20) & 0x01));
|
|
s_wallace_cla24_and_6_21 = and_gate(((a >> 6) & 0x01), ((b >> 21) & 0x01));
|
|
s_wallace_cla24_fa296_xor1 = (fa(((s_wallace_cla24_fa295_or0 >> 0) & 0x01), ((s_wallace_cla24_and_7_20 >> 0) & 0x01), ((s_wallace_cla24_and_6_21 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa296_or0 = (fa(((s_wallace_cla24_fa295_or0 >> 0) & 0x01), ((s_wallace_cla24_and_7_20 >> 0) & 0x01), ((s_wallace_cla24_and_6_21 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_7_21 = and_gate(((a >> 7) & 0x01), ((b >> 21) & 0x01));
|
|
s_wallace_cla24_and_6_22 = and_gate(((a >> 6) & 0x01), ((b >> 22) & 0x01));
|
|
s_wallace_cla24_fa297_xor1 = (fa(((s_wallace_cla24_fa296_or0 >> 0) & 0x01), ((s_wallace_cla24_and_7_21 >> 0) & 0x01), ((s_wallace_cla24_and_6_22 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa297_or0 = (fa(((s_wallace_cla24_fa296_or0 >> 0) & 0x01), ((s_wallace_cla24_and_7_21 >> 0) & 0x01), ((s_wallace_cla24_and_6_22 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_7_22 = and_gate(((a >> 7) & 0x01), ((b >> 22) & 0x01));
|
|
s_wallace_cla24_nand_6_23 = nand_gate(((a >> 6) & 0x01), ((b >> 23) & 0x01));
|
|
s_wallace_cla24_fa298_xor1 = (fa(((s_wallace_cla24_fa297_or0 >> 0) & 0x01), ((s_wallace_cla24_and_7_22 >> 0) & 0x01), ((s_wallace_cla24_nand_6_23 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa298_or0 = (fa(((s_wallace_cla24_fa297_or0 >> 0) & 0x01), ((s_wallace_cla24_and_7_22 >> 0) & 0x01), ((s_wallace_cla24_nand_6_23 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_nand_7_23 = nand_gate(((a >> 7) & 0x01), ((b >> 23) & 0x01));
|
|
s_wallace_cla24_fa299_xor1 = (fa(((s_wallace_cla24_fa298_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_7_23 >> 0) & 0x01), ((s_wallace_cla24_fa27_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa299_or0 = (fa(((s_wallace_cla24_fa298_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_7_23 >> 0) & 0x01), ((s_wallace_cla24_fa27_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa300_xor1 = (fa(((s_wallace_cla24_fa299_or0 >> 0) & 0x01), ((s_wallace_cla24_fa28_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa69_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa300_or0 = (fa(((s_wallace_cla24_fa299_or0 >> 0) & 0x01), ((s_wallace_cla24_fa28_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa69_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa301_xor1 = (fa(((s_wallace_cla24_fa300_or0 >> 0) & 0x01), ((s_wallace_cla24_fa70_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa109_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa301_or0 = (fa(((s_wallace_cla24_fa300_or0 >> 0) & 0x01), ((s_wallace_cla24_fa70_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa109_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa302_xor1 = (fa(((s_wallace_cla24_fa301_or0 >> 0) & 0x01), ((s_wallace_cla24_fa110_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa147_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa302_or0 = (fa(((s_wallace_cla24_fa301_or0 >> 0) & 0x01), ((s_wallace_cla24_fa110_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa147_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa303_xor1 = (fa(((s_wallace_cla24_fa302_or0 >> 0) & 0x01), ((s_wallace_cla24_fa148_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa183_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa303_or0 = (fa(((s_wallace_cla24_fa302_or0 >> 0) & 0x01), ((s_wallace_cla24_fa148_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa183_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa304_xor1 = (fa(((s_wallace_cla24_fa303_or0 >> 0) & 0x01), ((s_wallace_cla24_fa184_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa217_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa304_or0 = (fa(((s_wallace_cla24_fa303_or0 >> 0) & 0x01), ((s_wallace_cla24_fa184_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa217_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa305_xor1 = (fa(((s_wallace_cla24_fa304_or0 >> 0) & 0x01), ((s_wallace_cla24_fa218_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa249_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa305_or0 = (fa(((s_wallace_cla24_fa304_or0 >> 0) & 0x01), ((s_wallace_cla24_fa218_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa249_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_ha9_xor0 = (ha(((s_wallace_cla24_fa224_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa253_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_ha9_and0 = (ha(((s_wallace_cla24_fa224_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa253_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa306_xor1 = (fa(((s_wallace_cla24_ha9_and0 >> 0) & 0x01), ((s_wallace_cla24_fa194_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa225_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa306_or0 = (fa(((s_wallace_cla24_ha9_and0 >> 0) & 0x01), ((s_wallace_cla24_fa194_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa225_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa307_xor1 = (fa(((s_wallace_cla24_fa306_or0 >> 0) & 0x01), ((s_wallace_cla24_fa162_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa195_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa307_or0 = (fa(((s_wallace_cla24_fa306_or0 >> 0) & 0x01), ((s_wallace_cla24_fa162_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa195_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa308_xor1 = (fa(((s_wallace_cla24_fa307_or0 >> 0) & 0x01), ((s_wallace_cla24_fa128_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa163_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa308_or0 = (fa(((s_wallace_cla24_fa307_or0 >> 0) & 0x01), ((s_wallace_cla24_fa128_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa163_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa309_xor1 = (fa(((s_wallace_cla24_fa308_or0 >> 0) & 0x01), ((s_wallace_cla24_fa92_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa129_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa309_or0 = (fa(((s_wallace_cla24_fa308_or0 >> 0) & 0x01), ((s_wallace_cla24_fa92_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa129_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa310_xor1 = (fa(((s_wallace_cla24_fa309_or0 >> 0) & 0x01), ((s_wallace_cla24_fa54_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa93_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa310_or0 = (fa(((s_wallace_cla24_fa309_or0 >> 0) & 0x01), ((s_wallace_cla24_fa54_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa93_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa311_xor1 = (fa(((s_wallace_cla24_fa310_or0 >> 0) & 0x01), ((s_wallace_cla24_fa14_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa55_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa311_or0 = (fa(((s_wallace_cla24_fa310_or0 >> 0) & 0x01), ((s_wallace_cla24_fa14_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa55_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_0_18 = and_gate(((a >> 0) & 0x01), ((b >> 18) & 0x01));
|
|
s_wallace_cla24_fa312_xor1 = (fa(((s_wallace_cla24_fa311_or0 >> 0) & 0x01), ((s_wallace_cla24_and_0_18 >> 0) & 0x01), ((s_wallace_cla24_fa15_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa312_or0 = (fa(((s_wallace_cla24_fa311_or0 >> 0) & 0x01), ((s_wallace_cla24_and_0_18 >> 0) & 0x01), ((s_wallace_cla24_fa15_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_1_18 = and_gate(((a >> 1) & 0x01), ((b >> 18) & 0x01));
|
|
s_wallace_cla24_and_0_19 = and_gate(((a >> 0) & 0x01), ((b >> 19) & 0x01));
|
|
s_wallace_cla24_fa313_xor1 = (fa(((s_wallace_cla24_fa312_or0 >> 0) & 0x01), ((s_wallace_cla24_and_1_18 >> 0) & 0x01), ((s_wallace_cla24_and_0_19 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa313_or0 = (fa(((s_wallace_cla24_fa312_or0 >> 0) & 0x01), ((s_wallace_cla24_and_1_18 >> 0) & 0x01), ((s_wallace_cla24_and_0_19 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_2_18 = and_gate(((a >> 2) & 0x01), ((b >> 18) & 0x01));
|
|
s_wallace_cla24_and_1_19 = and_gate(((a >> 1) & 0x01), ((b >> 19) & 0x01));
|
|
s_wallace_cla24_fa314_xor1 = (fa(((s_wallace_cla24_fa313_or0 >> 0) & 0x01), ((s_wallace_cla24_and_2_18 >> 0) & 0x01), ((s_wallace_cla24_and_1_19 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa314_or0 = (fa(((s_wallace_cla24_fa313_or0 >> 0) & 0x01), ((s_wallace_cla24_and_2_18 >> 0) & 0x01), ((s_wallace_cla24_and_1_19 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_3_18 = and_gate(((a >> 3) & 0x01), ((b >> 18) & 0x01));
|
|
s_wallace_cla24_and_2_19 = and_gate(((a >> 2) & 0x01), ((b >> 19) & 0x01));
|
|
s_wallace_cla24_fa315_xor1 = (fa(((s_wallace_cla24_fa314_or0 >> 0) & 0x01), ((s_wallace_cla24_and_3_18 >> 0) & 0x01), ((s_wallace_cla24_and_2_19 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa315_or0 = (fa(((s_wallace_cla24_fa314_or0 >> 0) & 0x01), ((s_wallace_cla24_and_3_18 >> 0) & 0x01), ((s_wallace_cla24_and_2_19 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_4_18 = and_gate(((a >> 4) & 0x01), ((b >> 18) & 0x01));
|
|
s_wallace_cla24_and_3_19 = and_gate(((a >> 3) & 0x01), ((b >> 19) & 0x01));
|
|
s_wallace_cla24_fa316_xor1 = (fa(((s_wallace_cla24_fa315_or0 >> 0) & 0x01), ((s_wallace_cla24_and_4_18 >> 0) & 0x01), ((s_wallace_cla24_and_3_19 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa316_or0 = (fa(((s_wallace_cla24_fa315_or0 >> 0) & 0x01), ((s_wallace_cla24_and_4_18 >> 0) & 0x01), ((s_wallace_cla24_and_3_19 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_5_18 = and_gate(((a >> 5) & 0x01), ((b >> 18) & 0x01));
|
|
s_wallace_cla24_and_4_19 = and_gate(((a >> 4) & 0x01), ((b >> 19) & 0x01));
|
|
s_wallace_cla24_fa317_xor1 = (fa(((s_wallace_cla24_fa316_or0 >> 0) & 0x01), ((s_wallace_cla24_and_5_18 >> 0) & 0x01), ((s_wallace_cla24_and_4_19 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa317_or0 = (fa(((s_wallace_cla24_fa316_or0 >> 0) & 0x01), ((s_wallace_cla24_and_5_18 >> 0) & 0x01), ((s_wallace_cla24_and_4_19 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_6_18 = and_gate(((a >> 6) & 0x01), ((b >> 18) & 0x01));
|
|
s_wallace_cla24_and_5_19 = and_gate(((a >> 5) & 0x01), ((b >> 19) & 0x01));
|
|
s_wallace_cla24_fa318_xor1 = (fa(((s_wallace_cla24_fa317_or0 >> 0) & 0x01), ((s_wallace_cla24_and_6_18 >> 0) & 0x01), ((s_wallace_cla24_and_5_19 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa318_or0 = (fa(((s_wallace_cla24_fa317_or0 >> 0) & 0x01), ((s_wallace_cla24_and_6_18 >> 0) & 0x01), ((s_wallace_cla24_and_5_19 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_5_20 = and_gate(((a >> 5) & 0x01), ((b >> 20) & 0x01));
|
|
s_wallace_cla24_and_4_21 = and_gate(((a >> 4) & 0x01), ((b >> 21) & 0x01));
|
|
s_wallace_cla24_fa319_xor1 = (fa(((s_wallace_cla24_fa318_or0 >> 0) & 0x01), ((s_wallace_cla24_and_5_20 >> 0) & 0x01), ((s_wallace_cla24_and_4_21 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa319_or0 = (fa(((s_wallace_cla24_fa318_or0 >> 0) & 0x01), ((s_wallace_cla24_and_5_20 >> 0) & 0x01), ((s_wallace_cla24_and_4_21 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_5_21 = and_gate(((a >> 5) & 0x01), ((b >> 21) & 0x01));
|
|
s_wallace_cla24_and_4_22 = and_gate(((a >> 4) & 0x01), ((b >> 22) & 0x01));
|
|
s_wallace_cla24_fa320_xor1 = (fa(((s_wallace_cla24_fa319_or0 >> 0) & 0x01), ((s_wallace_cla24_and_5_21 >> 0) & 0x01), ((s_wallace_cla24_and_4_22 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa320_or0 = (fa(((s_wallace_cla24_fa319_or0 >> 0) & 0x01), ((s_wallace_cla24_and_5_21 >> 0) & 0x01), ((s_wallace_cla24_and_4_22 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_5_22 = and_gate(((a >> 5) & 0x01), ((b >> 22) & 0x01));
|
|
s_wallace_cla24_nand_4_23 = nand_gate(((a >> 4) & 0x01), ((b >> 23) & 0x01));
|
|
s_wallace_cla24_fa321_xor1 = (fa(((s_wallace_cla24_fa320_or0 >> 0) & 0x01), ((s_wallace_cla24_and_5_22 >> 0) & 0x01), ((s_wallace_cla24_nand_4_23 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa321_or0 = (fa(((s_wallace_cla24_fa320_or0 >> 0) & 0x01), ((s_wallace_cla24_and_5_22 >> 0) & 0x01), ((s_wallace_cla24_nand_4_23 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_nand_5_23 = nand_gate(((a >> 5) & 0x01), ((b >> 23) & 0x01));
|
|
s_wallace_cla24_fa322_xor1 = (fa(((s_wallace_cla24_fa321_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_5_23 >> 0) & 0x01), ((s_wallace_cla24_fa25_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa322_or0 = (fa(((s_wallace_cla24_fa321_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_5_23 >> 0) & 0x01), ((s_wallace_cla24_fa25_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa323_xor1 = (fa(((s_wallace_cla24_fa322_or0 >> 0) & 0x01), ((s_wallace_cla24_fa26_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa67_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa323_or0 = (fa(((s_wallace_cla24_fa322_or0 >> 0) & 0x01), ((s_wallace_cla24_fa26_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa67_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa324_xor1 = (fa(((s_wallace_cla24_fa323_or0 >> 0) & 0x01), ((s_wallace_cla24_fa68_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa107_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa324_or0 = (fa(((s_wallace_cla24_fa323_or0 >> 0) & 0x01), ((s_wallace_cla24_fa68_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa107_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa325_xor1 = (fa(((s_wallace_cla24_fa324_or0 >> 0) & 0x01), ((s_wallace_cla24_fa108_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa145_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa325_or0 = (fa(((s_wallace_cla24_fa324_or0 >> 0) & 0x01), ((s_wallace_cla24_fa108_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa145_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa326_xor1 = (fa(((s_wallace_cla24_fa325_or0 >> 0) & 0x01), ((s_wallace_cla24_fa146_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa181_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa326_or0 = (fa(((s_wallace_cla24_fa325_or0 >> 0) & 0x01), ((s_wallace_cla24_fa146_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa181_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa327_xor1 = (fa(((s_wallace_cla24_fa326_or0 >> 0) & 0x01), ((s_wallace_cla24_fa182_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa215_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa327_or0 = (fa(((s_wallace_cla24_fa326_or0 >> 0) & 0x01), ((s_wallace_cla24_fa182_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa215_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa328_xor1 = (fa(((s_wallace_cla24_fa327_or0 >> 0) & 0x01), ((s_wallace_cla24_fa216_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa247_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa328_or0 = (fa(((s_wallace_cla24_fa327_or0 >> 0) & 0x01), ((s_wallace_cla24_fa216_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa247_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa329_xor1 = (fa(((s_wallace_cla24_fa328_or0 >> 0) & 0x01), ((s_wallace_cla24_fa248_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa277_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa329_or0 = (fa(((s_wallace_cla24_fa328_or0 >> 0) & 0x01), ((s_wallace_cla24_fa248_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa277_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_ha10_xor0 = (ha(((s_wallace_cla24_fa254_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa281_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_ha10_and0 = (ha(((s_wallace_cla24_fa254_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa281_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa330_xor1 = (fa(((s_wallace_cla24_ha10_and0 >> 0) & 0x01), ((s_wallace_cla24_fa226_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa255_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa330_or0 = (fa(((s_wallace_cla24_ha10_and0 >> 0) & 0x01), ((s_wallace_cla24_fa226_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa255_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa331_xor1 = (fa(((s_wallace_cla24_fa330_or0 >> 0) & 0x01), ((s_wallace_cla24_fa196_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa227_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa331_or0 = (fa(((s_wallace_cla24_fa330_or0 >> 0) & 0x01), ((s_wallace_cla24_fa196_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa227_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa332_xor1 = (fa(((s_wallace_cla24_fa331_or0 >> 0) & 0x01), ((s_wallace_cla24_fa164_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa197_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa332_or0 = (fa(((s_wallace_cla24_fa331_or0 >> 0) & 0x01), ((s_wallace_cla24_fa164_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa197_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa333_xor1 = (fa(((s_wallace_cla24_fa332_or0 >> 0) & 0x01), ((s_wallace_cla24_fa130_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa165_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa333_or0 = (fa(((s_wallace_cla24_fa332_or0 >> 0) & 0x01), ((s_wallace_cla24_fa130_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa165_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa334_xor1 = (fa(((s_wallace_cla24_fa333_or0 >> 0) & 0x01), ((s_wallace_cla24_fa94_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa131_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa334_or0 = (fa(((s_wallace_cla24_fa333_or0 >> 0) & 0x01), ((s_wallace_cla24_fa94_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa131_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa335_xor1 = (fa(((s_wallace_cla24_fa334_or0 >> 0) & 0x01), ((s_wallace_cla24_fa56_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa95_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa335_or0 = (fa(((s_wallace_cla24_fa334_or0 >> 0) & 0x01), ((s_wallace_cla24_fa56_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa95_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa336_xor1 = (fa(((s_wallace_cla24_fa335_or0 >> 0) & 0x01), ((s_wallace_cla24_fa16_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa57_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa336_or0 = (fa(((s_wallace_cla24_fa335_or0 >> 0) & 0x01), ((s_wallace_cla24_fa16_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa57_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_0_20 = and_gate(((a >> 0) & 0x01), ((b >> 20) & 0x01));
|
|
s_wallace_cla24_fa337_xor1 = (fa(((s_wallace_cla24_fa336_or0 >> 0) & 0x01), ((s_wallace_cla24_and_0_20 >> 0) & 0x01), ((s_wallace_cla24_fa17_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa337_or0 = (fa(((s_wallace_cla24_fa336_or0 >> 0) & 0x01), ((s_wallace_cla24_and_0_20 >> 0) & 0x01), ((s_wallace_cla24_fa17_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_1_20 = and_gate(((a >> 1) & 0x01), ((b >> 20) & 0x01));
|
|
s_wallace_cla24_and_0_21 = and_gate(((a >> 0) & 0x01), ((b >> 21) & 0x01));
|
|
s_wallace_cla24_fa338_xor1 = (fa(((s_wallace_cla24_fa337_or0 >> 0) & 0x01), ((s_wallace_cla24_and_1_20 >> 0) & 0x01), ((s_wallace_cla24_and_0_21 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa338_or0 = (fa(((s_wallace_cla24_fa337_or0 >> 0) & 0x01), ((s_wallace_cla24_and_1_20 >> 0) & 0x01), ((s_wallace_cla24_and_0_21 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_2_20 = and_gate(((a >> 2) & 0x01), ((b >> 20) & 0x01));
|
|
s_wallace_cla24_and_1_21 = and_gate(((a >> 1) & 0x01), ((b >> 21) & 0x01));
|
|
s_wallace_cla24_fa339_xor1 = (fa(((s_wallace_cla24_fa338_or0 >> 0) & 0x01), ((s_wallace_cla24_and_2_20 >> 0) & 0x01), ((s_wallace_cla24_and_1_21 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa339_or0 = (fa(((s_wallace_cla24_fa338_or0 >> 0) & 0x01), ((s_wallace_cla24_and_2_20 >> 0) & 0x01), ((s_wallace_cla24_and_1_21 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_3_20 = and_gate(((a >> 3) & 0x01), ((b >> 20) & 0x01));
|
|
s_wallace_cla24_and_2_21 = and_gate(((a >> 2) & 0x01), ((b >> 21) & 0x01));
|
|
s_wallace_cla24_fa340_xor1 = (fa(((s_wallace_cla24_fa339_or0 >> 0) & 0x01), ((s_wallace_cla24_and_3_20 >> 0) & 0x01), ((s_wallace_cla24_and_2_21 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa340_or0 = (fa(((s_wallace_cla24_fa339_or0 >> 0) & 0x01), ((s_wallace_cla24_and_3_20 >> 0) & 0x01), ((s_wallace_cla24_and_2_21 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_4_20 = and_gate(((a >> 4) & 0x01), ((b >> 20) & 0x01));
|
|
s_wallace_cla24_and_3_21 = and_gate(((a >> 3) & 0x01), ((b >> 21) & 0x01));
|
|
s_wallace_cla24_fa341_xor1 = (fa(((s_wallace_cla24_fa340_or0 >> 0) & 0x01), ((s_wallace_cla24_and_4_20 >> 0) & 0x01), ((s_wallace_cla24_and_3_21 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa341_or0 = (fa(((s_wallace_cla24_fa340_or0 >> 0) & 0x01), ((s_wallace_cla24_and_4_20 >> 0) & 0x01), ((s_wallace_cla24_and_3_21 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_3_22 = and_gate(((a >> 3) & 0x01), ((b >> 22) & 0x01));
|
|
s_wallace_cla24_nand_2_23 = nand_gate(((a >> 2) & 0x01), ((b >> 23) & 0x01));
|
|
s_wallace_cla24_fa342_xor1 = (fa(((s_wallace_cla24_fa341_or0 >> 0) & 0x01), ((s_wallace_cla24_and_3_22 >> 0) & 0x01), ((s_wallace_cla24_nand_2_23 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa342_or0 = (fa(((s_wallace_cla24_fa341_or0 >> 0) & 0x01), ((s_wallace_cla24_and_3_22 >> 0) & 0x01), ((s_wallace_cla24_nand_2_23 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_nand_3_23 = nand_gate(((a >> 3) & 0x01), ((b >> 23) & 0x01));
|
|
s_wallace_cla24_fa343_xor1 = (fa(((s_wallace_cla24_fa342_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_3_23 >> 0) & 0x01), ((s_wallace_cla24_fa23_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa343_or0 = (fa(((s_wallace_cla24_fa342_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_3_23 >> 0) & 0x01), ((s_wallace_cla24_fa23_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa344_xor1 = (fa(((s_wallace_cla24_fa343_or0 >> 0) & 0x01), ((s_wallace_cla24_fa24_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa65_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa344_or0 = (fa(((s_wallace_cla24_fa343_or0 >> 0) & 0x01), ((s_wallace_cla24_fa24_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa65_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa345_xor1 = (fa(((s_wallace_cla24_fa344_or0 >> 0) & 0x01), ((s_wallace_cla24_fa66_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa105_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa345_or0 = (fa(((s_wallace_cla24_fa344_or0 >> 0) & 0x01), ((s_wallace_cla24_fa66_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa105_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa346_xor1 = (fa(((s_wallace_cla24_fa345_or0 >> 0) & 0x01), ((s_wallace_cla24_fa106_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa143_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa346_or0 = (fa(((s_wallace_cla24_fa345_or0 >> 0) & 0x01), ((s_wallace_cla24_fa106_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa143_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa347_xor1 = (fa(((s_wallace_cla24_fa346_or0 >> 0) & 0x01), ((s_wallace_cla24_fa144_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa179_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa347_or0 = (fa(((s_wallace_cla24_fa346_or0 >> 0) & 0x01), ((s_wallace_cla24_fa144_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa179_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa348_xor1 = (fa(((s_wallace_cla24_fa347_or0 >> 0) & 0x01), ((s_wallace_cla24_fa180_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa213_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa348_or0 = (fa(((s_wallace_cla24_fa347_or0 >> 0) & 0x01), ((s_wallace_cla24_fa180_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa213_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa349_xor1 = (fa(((s_wallace_cla24_fa348_or0 >> 0) & 0x01), ((s_wallace_cla24_fa214_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa245_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa349_or0 = (fa(((s_wallace_cla24_fa348_or0 >> 0) & 0x01), ((s_wallace_cla24_fa214_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa245_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa350_xor1 = (fa(((s_wallace_cla24_fa349_or0 >> 0) & 0x01), ((s_wallace_cla24_fa246_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa275_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa350_or0 = (fa(((s_wallace_cla24_fa349_or0 >> 0) & 0x01), ((s_wallace_cla24_fa246_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa275_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa351_xor1 = (fa(((s_wallace_cla24_fa350_or0 >> 0) & 0x01), ((s_wallace_cla24_fa276_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa303_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa351_or0 = (fa(((s_wallace_cla24_fa350_or0 >> 0) & 0x01), ((s_wallace_cla24_fa276_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa303_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_ha11_xor0 = (ha(((s_wallace_cla24_fa282_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa307_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_ha11_and0 = (ha(((s_wallace_cla24_fa282_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa307_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa352_xor1 = (fa(((s_wallace_cla24_ha11_and0 >> 0) & 0x01), ((s_wallace_cla24_fa256_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa283_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa352_or0 = (fa(((s_wallace_cla24_ha11_and0 >> 0) & 0x01), ((s_wallace_cla24_fa256_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa283_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa353_xor1 = (fa(((s_wallace_cla24_fa352_or0 >> 0) & 0x01), ((s_wallace_cla24_fa228_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa257_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa353_or0 = (fa(((s_wallace_cla24_fa352_or0 >> 0) & 0x01), ((s_wallace_cla24_fa228_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa257_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa354_xor1 = (fa(((s_wallace_cla24_fa353_or0 >> 0) & 0x01), ((s_wallace_cla24_fa198_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa229_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa354_or0 = (fa(((s_wallace_cla24_fa353_or0 >> 0) & 0x01), ((s_wallace_cla24_fa198_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa229_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa355_xor1 = (fa(((s_wallace_cla24_fa354_or0 >> 0) & 0x01), ((s_wallace_cla24_fa166_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa199_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa355_or0 = (fa(((s_wallace_cla24_fa354_or0 >> 0) & 0x01), ((s_wallace_cla24_fa166_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa199_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa356_xor1 = (fa(((s_wallace_cla24_fa355_or0 >> 0) & 0x01), ((s_wallace_cla24_fa132_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa167_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa356_or0 = (fa(((s_wallace_cla24_fa355_or0 >> 0) & 0x01), ((s_wallace_cla24_fa132_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa167_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa357_xor1 = (fa(((s_wallace_cla24_fa356_or0 >> 0) & 0x01), ((s_wallace_cla24_fa96_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa133_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa357_or0 = (fa(((s_wallace_cla24_fa356_or0 >> 0) & 0x01), ((s_wallace_cla24_fa96_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa133_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa358_xor1 = (fa(((s_wallace_cla24_fa357_or0 >> 0) & 0x01), ((s_wallace_cla24_fa58_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa97_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa358_or0 = (fa(((s_wallace_cla24_fa357_or0 >> 0) & 0x01), ((s_wallace_cla24_fa58_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa97_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa359_xor1 = (fa(((s_wallace_cla24_fa358_or0 >> 0) & 0x01), ((s_wallace_cla24_fa18_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa59_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa359_or0 = (fa(((s_wallace_cla24_fa358_or0 >> 0) & 0x01), ((s_wallace_cla24_fa18_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa59_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_0_22 = and_gate(((a >> 0) & 0x01), ((b >> 22) & 0x01));
|
|
s_wallace_cla24_fa360_xor1 = (fa(((s_wallace_cla24_fa359_or0 >> 0) & 0x01), ((s_wallace_cla24_and_0_22 >> 0) & 0x01), ((s_wallace_cla24_fa19_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa360_or0 = (fa(((s_wallace_cla24_fa359_or0 >> 0) & 0x01), ((s_wallace_cla24_and_0_22 >> 0) & 0x01), ((s_wallace_cla24_fa19_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_1_22 = and_gate(((a >> 1) & 0x01), ((b >> 22) & 0x01));
|
|
s_wallace_cla24_nand_0_23 = nand_gate(((a >> 0) & 0x01), ((b >> 23) & 0x01));
|
|
s_wallace_cla24_fa361_xor1 = (fa(((s_wallace_cla24_fa360_or0 >> 0) & 0x01), ((s_wallace_cla24_and_1_22 >> 0) & 0x01), ((s_wallace_cla24_nand_0_23 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa361_or0 = (fa(((s_wallace_cla24_fa360_or0 >> 0) & 0x01), ((s_wallace_cla24_and_1_22 >> 0) & 0x01), ((s_wallace_cla24_nand_0_23 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_2_22 = and_gate(((a >> 2) & 0x01), ((b >> 22) & 0x01));
|
|
s_wallace_cla24_nand_1_23 = nand_gate(((a >> 1) & 0x01), ((b >> 23) & 0x01));
|
|
s_wallace_cla24_fa362_xor1 = (fa(((s_wallace_cla24_fa361_or0 >> 0) & 0x01), ((s_wallace_cla24_and_2_22 >> 0) & 0x01), ((s_wallace_cla24_nand_1_23 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa362_or0 = (fa(((s_wallace_cla24_fa361_or0 >> 0) & 0x01), ((s_wallace_cla24_and_2_22 >> 0) & 0x01), ((s_wallace_cla24_nand_1_23 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa363_xor1 = (fa(((s_wallace_cla24_fa362_or0 >> 0) & 0x01), ((s_wallace_cla24_fa22_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa63_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa363_or0 = (fa(((s_wallace_cla24_fa362_or0 >> 0) & 0x01), ((s_wallace_cla24_fa22_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa63_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa364_xor1 = (fa(((s_wallace_cla24_fa363_or0 >> 0) & 0x01), ((s_wallace_cla24_fa64_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa103_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa364_or0 = (fa(((s_wallace_cla24_fa363_or0 >> 0) & 0x01), ((s_wallace_cla24_fa64_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa103_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa365_xor1 = (fa(((s_wallace_cla24_fa364_or0 >> 0) & 0x01), ((s_wallace_cla24_fa104_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa141_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa365_or0 = (fa(((s_wallace_cla24_fa364_or0 >> 0) & 0x01), ((s_wallace_cla24_fa104_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa141_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa366_xor1 = (fa(((s_wallace_cla24_fa365_or0 >> 0) & 0x01), ((s_wallace_cla24_fa142_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa177_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa366_or0 = (fa(((s_wallace_cla24_fa365_or0 >> 0) & 0x01), ((s_wallace_cla24_fa142_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa177_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa367_xor1 = (fa(((s_wallace_cla24_fa366_or0 >> 0) & 0x01), ((s_wallace_cla24_fa178_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa211_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa367_or0 = (fa(((s_wallace_cla24_fa366_or0 >> 0) & 0x01), ((s_wallace_cla24_fa178_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa211_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa368_xor1 = (fa(((s_wallace_cla24_fa367_or0 >> 0) & 0x01), ((s_wallace_cla24_fa212_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa243_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa368_or0 = (fa(((s_wallace_cla24_fa367_or0 >> 0) & 0x01), ((s_wallace_cla24_fa212_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa243_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa369_xor1 = (fa(((s_wallace_cla24_fa368_or0 >> 0) & 0x01), ((s_wallace_cla24_fa244_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa273_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa369_or0 = (fa(((s_wallace_cla24_fa368_or0 >> 0) & 0x01), ((s_wallace_cla24_fa244_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa273_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa370_xor1 = (fa(((s_wallace_cla24_fa369_or0 >> 0) & 0x01), ((s_wallace_cla24_fa274_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa301_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa370_or0 = (fa(((s_wallace_cla24_fa369_or0 >> 0) & 0x01), ((s_wallace_cla24_fa274_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa301_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa371_xor1 = (fa(((s_wallace_cla24_fa370_or0 >> 0) & 0x01), ((s_wallace_cla24_fa302_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa327_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa371_or0 = (fa(((s_wallace_cla24_fa370_or0 >> 0) & 0x01), ((s_wallace_cla24_fa302_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa327_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_ha12_xor0 = (ha(((s_wallace_cla24_fa308_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa331_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_ha12_and0 = (ha(((s_wallace_cla24_fa308_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa331_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa372_xor1 = (fa(((s_wallace_cla24_ha12_and0 >> 0) & 0x01), ((s_wallace_cla24_fa284_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa309_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa372_or0 = (fa(((s_wallace_cla24_ha12_and0 >> 0) & 0x01), ((s_wallace_cla24_fa284_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa309_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa373_xor1 = (fa(((s_wallace_cla24_fa372_or0 >> 0) & 0x01), ((s_wallace_cla24_fa258_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa285_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa373_or0 = (fa(((s_wallace_cla24_fa372_or0 >> 0) & 0x01), ((s_wallace_cla24_fa258_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa285_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa374_xor1 = (fa(((s_wallace_cla24_fa373_or0 >> 0) & 0x01), ((s_wallace_cla24_fa230_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa259_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa374_or0 = (fa(((s_wallace_cla24_fa373_or0 >> 0) & 0x01), ((s_wallace_cla24_fa230_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa259_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa375_xor1 = (fa(((s_wallace_cla24_fa374_or0 >> 0) & 0x01), ((s_wallace_cla24_fa200_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa231_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa375_or0 = (fa(((s_wallace_cla24_fa374_or0 >> 0) & 0x01), ((s_wallace_cla24_fa200_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa231_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa376_xor1 = (fa(((s_wallace_cla24_fa375_or0 >> 0) & 0x01), ((s_wallace_cla24_fa168_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa201_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa376_or0 = (fa(((s_wallace_cla24_fa375_or0 >> 0) & 0x01), ((s_wallace_cla24_fa168_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa201_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa377_xor1 = (fa(((s_wallace_cla24_fa376_or0 >> 0) & 0x01), ((s_wallace_cla24_fa134_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa169_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa377_or0 = (fa(((s_wallace_cla24_fa376_or0 >> 0) & 0x01), ((s_wallace_cla24_fa134_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa169_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa378_xor1 = (fa(((s_wallace_cla24_fa377_or0 >> 0) & 0x01), ((s_wallace_cla24_fa98_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa135_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa378_or0 = (fa(((s_wallace_cla24_fa377_or0 >> 0) & 0x01), ((s_wallace_cla24_fa98_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa135_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa379_xor1 = (fa(((s_wallace_cla24_fa378_or0 >> 0) & 0x01), ((s_wallace_cla24_fa60_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa99_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa379_or0 = (fa(((s_wallace_cla24_fa378_or0 >> 0) & 0x01), ((s_wallace_cla24_fa60_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa99_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa380_xor1 = (fa(((s_wallace_cla24_fa379_or0 >> 0) & 0x01), ((s_wallace_cla24_fa20_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa61_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa380_or0 = (fa(((s_wallace_cla24_fa379_or0 >> 0) & 0x01), ((s_wallace_cla24_fa20_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa61_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa381_xor1 = (fa(((s_wallace_cla24_fa380_or0 >> 0) & 0x01), ((s_wallace_cla24_fa21_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa62_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa381_or0 = (fa(((s_wallace_cla24_fa380_or0 >> 0) & 0x01), ((s_wallace_cla24_fa21_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa62_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa382_xor1 = (fa(((s_wallace_cla24_fa381_or0 >> 0) & 0x01), ((s_wallace_cla24_fa102_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa139_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa382_or0 = (fa(((s_wallace_cla24_fa381_or0 >> 0) & 0x01), ((s_wallace_cla24_fa102_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa139_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa383_xor1 = (fa(((s_wallace_cla24_fa382_or0 >> 0) & 0x01), ((s_wallace_cla24_fa140_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa175_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa383_or0 = (fa(((s_wallace_cla24_fa382_or0 >> 0) & 0x01), ((s_wallace_cla24_fa140_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa175_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa384_xor1 = (fa(((s_wallace_cla24_fa383_or0 >> 0) & 0x01), ((s_wallace_cla24_fa176_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa209_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa384_or0 = (fa(((s_wallace_cla24_fa383_or0 >> 0) & 0x01), ((s_wallace_cla24_fa176_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa209_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa385_xor1 = (fa(((s_wallace_cla24_fa384_or0 >> 0) & 0x01), ((s_wallace_cla24_fa210_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa241_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa385_or0 = (fa(((s_wallace_cla24_fa384_or0 >> 0) & 0x01), ((s_wallace_cla24_fa210_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa241_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa386_xor1 = (fa(((s_wallace_cla24_fa385_or0 >> 0) & 0x01), ((s_wallace_cla24_fa242_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa271_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa386_or0 = (fa(((s_wallace_cla24_fa385_or0 >> 0) & 0x01), ((s_wallace_cla24_fa242_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa271_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa387_xor1 = (fa(((s_wallace_cla24_fa386_or0 >> 0) & 0x01), ((s_wallace_cla24_fa272_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa299_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa387_or0 = (fa(((s_wallace_cla24_fa386_or0 >> 0) & 0x01), ((s_wallace_cla24_fa272_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa299_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa388_xor1 = (fa(((s_wallace_cla24_fa387_or0 >> 0) & 0x01), ((s_wallace_cla24_fa300_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa325_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa388_or0 = (fa(((s_wallace_cla24_fa387_or0 >> 0) & 0x01), ((s_wallace_cla24_fa300_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa325_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa389_xor1 = (fa(((s_wallace_cla24_fa388_or0 >> 0) & 0x01), ((s_wallace_cla24_fa326_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa349_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa389_or0 = (fa(((s_wallace_cla24_fa388_or0 >> 0) & 0x01), ((s_wallace_cla24_fa326_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa349_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_ha13_xor0 = (ha(((s_wallace_cla24_fa332_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa353_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_ha13_and0 = (ha(((s_wallace_cla24_fa332_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa353_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa390_xor1 = (fa(((s_wallace_cla24_ha13_and0 >> 0) & 0x01), ((s_wallace_cla24_fa310_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa333_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa390_or0 = (fa(((s_wallace_cla24_ha13_and0 >> 0) & 0x01), ((s_wallace_cla24_fa310_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa333_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa391_xor1 = (fa(((s_wallace_cla24_fa390_or0 >> 0) & 0x01), ((s_wallace_cla24_fa286_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa311_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa391_or0 = (fa(((s_wallace_cla24_fa390_or0 >> 0) & 0x01), ((s_wallace_cla24_fa286_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa311_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa392_xor1 = (fa(((s_wallace_cla24_fa391_or0 >> 0) & 0x01), ((s_wallace_cla24_fa260_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa287_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa392_or0 = (fa(((s_wallace_cla24_fa391_or0 >> 0) & 0x01), ((s_wallace_cla24_fa260_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa287_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa393_xor1 = (fa(((s_wallace_cla24_fa392_or0 >> 0) & 0x01), ((s_wallace_cla24_fa232_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa261_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa393_or0 = (fa(((s_wallace_cla24_fa392_or0 >> 0) & 0x01), ((s_wallace_cla24_fa232_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa261_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa394_xor1 = (fa(((s_wallace_cla24_fa393_or0 >> 0) & 0x01), ((s_wallace_cla24_fa202_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa233_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa394_or0 = (fa(((s_wallace_cla24_fa393_or0 >> 0) & 0x01), ((s_wallace_cla24_fa202_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa233_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa395_xor1 = (fa(((s_wallace_cla24_fa394_or0 >> 0) & 0x01), ((s_wallace_cla24_fa170_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa203_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa395_or0 = (fa(((s_wallace_cla24_fa394_or0 >> 0) & 0x01), ((s_wallace_cla24_fa170_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa203_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa396_xor1 = (fa(((s_wallace_cla24_fa395_or0 >> 0) & 0x01), ((s_wallace_cla24_fa136_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa171_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa396_or0 = (fa(((s_wallace_cla24_fa395_or0 >> 0) & 0x01), ((s_wallace_cla24_fa136_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa171_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa397_xor1 = (fa(((s_wallace_cla24_fa396_or0 >> 0) & 0x01), ((s_wallace_cla24_fa100_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa137_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa397_or0 = (fa(((s_wallace_cla24_fa396_or0 >> 0) & 0x01), ((s_wallace_cla24_fa100_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa137_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa398_xor1 = (fa(((s_wallace_cla24_fa397_or0 >> 0) & 0x01), ((s_wallace_cla24_fa101_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa138_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa398_or0 = (fa(((s_wallace_cla24_fa397_or0 >> 0) & 0x01), ((s_wallace_cla24_fa101_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa138_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa399_xor1 = (fa(((s_wallace_cla24_fa398_or0 >> 0) & 0x01), ((s_wallace_cla24_fa174_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa207_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa399_or0 = (fa(((s_wallace_cla24_fa398_or0 >> 0) & 0x01), ((s_wallace_cla24_fa174_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa207_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa400_xor1 = (fa(((s_wallace_cla24_fa399_or0 >> 0) & 0x01), ((s_wallace_cla24_fa208_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa239_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa400_or0 = (fa(((s_wallace_cla24_fa399_or0 >> 0) & 0x01), ((s_wallace_cla24_fa208_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa239_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa401_xor1 = (fa(((s_wallace_cla24_fa400_or0 >> 0) & 0x01), ((s_wallace_cla24_fa240_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa269_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa401_or0 = (fa(((s_wallace_cla24_fa400_or0 >> 0) & 0x01), ((s_wallace_cla24_fa240_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa269_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa402_xor1 = (fa(((s_wallace_cla24_fa401_or0 >> 0) & 0x01), ((s_wallace_cla24_fa270_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa297_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa402_or0 = (fa(((s_wallace_cla24_fa401_or0 >> 0) & 0x01), ((s_wallace_cla24_fa270_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa297_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa403_xor1 = (fa(((s_wallace_cla24_fa402_or0 >> 0) & 0x01), ((s_wallace_cla24_fa298_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa323_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa403_or0 = (fa(((s_wallace_cla24_fa402_or0 >> 0) & 0x01), ((s_wallace_cla24_fa298_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa323_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa404_xor1 = (fa(((s_wallace_cla24_fa403_or0 >> 0) & 0x01), ((s_wallace_cla24_fa324_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa347_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa404_or0 = (fa(((s_wallace_cla24_fa403_or0 >> 0) & 0x01), ((s_wallace_cla24_fa324_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa347_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa405_xor1 = (fa(((s_wallace_cla24_fa404_or0 >> 0) & 0x01), ((s_wallace_cla24_fa348_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa369_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa405_or0 = (fa(((s_wallace_cla24_fa404_or0 >> 0) & 0x01), ((s_wallace_cla24_fa348_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa369_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_ha14_xor0 = (ha(((s_wallace_cla24_fa354_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa373_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_ha14_and0 = (ha(((s_wallace_cla24_fa354_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa373_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa406_xor1 = (fa(((s_wallace_cla24_ha14_and0 >> 0) & 0x01), ((s_wallace_cla24_fa334_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa355_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa406_or0 = (fa(((s_wallace_cla24_ha14_and0 >> 0) & 0x01), ((s_wallace_cla24_fa334_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa355_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa407_xor1 = (fa(((s_wallace_cla24_fa406_or0 >> 0) & 0x01), ((s_wallace_cla24_fa312_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa335_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa407_or0 = (fa(((s_wallace_cla24_fa406_or0 >> 0) & 0x01), ((s_wallace_cla24_fa312_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa335_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa408_xor1 = (fa(((s_wallace_cla24_fa407_or0 >> 0) & 0x01), ((s_wallace_cla24_fa288_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa313_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa408_or0 = (fa(((s_wallace_cla24_fa407_or0 >> 0) & 0x01), ((s_wallace_cla24_fa288_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa313_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa409_xor1 = (fa(((s_wallace_cla24_fa408_or0 >> 0) & 0x01), ((s_wallace_cla24_fa262_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa289_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa409_or0 = (fa(((s_wallace_cla24_fa408_or0 >> 0) & 0x01), ((s_wallace_cla24_fa262_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa289_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa410_xor1 = (fa(((s_wallace_cla24_fa409_or0 >> 0) & 0x01), ((s_wallace_cla24_fa234_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa263_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa410_or0 = (fa(((s_wallace_cla24_fa409_or0 >> 0) & 0x01), ((s_wallace_cla24_fa234_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa263_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa411_xor1 = (fa(((s_wallace_cla24_fa410_or0 >> 0) & 0x01), ((s_wallace_cla24_fa204_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa235_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa411_or0 = (fa(((s_wallace_cla24_fa410_or0 >> 0) & 0x01), ((s_wallace_cla24_fa204_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa235_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa412_xor1 = (fa(((s_wallace_cla24_fa411_or0 >> 0) & 0x01), ((s_wallace_cla24_fa172_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa205_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa412_or0 = (fa(((s_wallace_cla24_fa411_or0 >> 0) & 0x01), ((s_wallace_cla24_fa172_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa205_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa413_xor1 = (fa(((s_wallace_cla24_fa412_or0 >> 0) & 0x01), ((s_wallace_cla24_fa173_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa206_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa413_or0 = (fa(((s_wallace_cla24_fa412_or0 >> 0) & 0x01), ((s_wallace_cla24_fa173_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa206_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa414_xor1 = (fa(((s_wallace_cla24_fa413_or0 >> 0) & 0x01), ((s_wallace_cla24_fa238_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa267_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa414_or0 = (fa(((s_wallace_cla24_fa413_or0 >> 0) & 0x01), ((s_wallace_cla24_fa238_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa267_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa415_xor1 = (fa(((s_wallace_cla24_fa414_or0 >> 0) & 0x01), ((s_wallace_cla24_fa268_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa295_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa415_or0 = (fa(((s_wallace_cla24_fa414_or0 >> 0) & 0x01), ((s_wallace_cla24_fa268_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa295_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa416_xor1 = (fa(((s_wallace_cla24_fa415_or0 >> 0) & 0x01), ((s_wallace_cla24_fa296_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa321_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa416_or0 = (fa(((s_wallace_cla24_fa415_or0 >> 0) & 0x01), ((s_wallace_cla24_fa296_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa321_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa417_xor1 = (fa(((s_wallace_cla24_fa416_or0 >> 0) & 0x01), ((s_wallace_cla24_fa322_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa345_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa417_or0 = (fa(((s_wallace_cla24_fa416_or0 >> 0) & 0x01), ((s_wallace_cla24_fa322_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa345_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa418_xor1 = (fa(((s_wallace_cla24_fa417_or0 >> 0) & 0x01), ((s_wallace_cla24_fa346_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa367_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa418_or0 = (fa(((s_wallace_cla24_fa417_or0 >> 0) & 0x01), ((s_wallace_cla24_fa346_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa367_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa419_xor1 = (fa(((s_wallace_cla24_fa418_or0 >> 0) & 0x01), ((s_wallace_cla24_fa368_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa387_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa419_or0 = (fa(((s_wallace_cla24_fa418_or0 >> 0) & 0x01), ((s_wallace_cla24_fa368_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa387_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_ha15_xor0 = (ha(((s_wallace_cla24_fa374_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa391_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_ha15_and0 = (ha(((s_wallace_cla24_fa374_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa391_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa420_xor1 = (fa(((s_wallace_cla24_ha15_and0 >> 0) & 0x01), ((s_wallace_cla24_fa356_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa375_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa420_or0 = (fa(((s_wallace_cla24_ha15_and0 >> 0) & 0x01), ((s_wallace_cla24_fa356_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa375_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa421_xor1 = (fa(((s_wallace_cla24_fa420_or0 >> 0) & 0x01), ((s_wallace_cla24_fa336_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa357_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa421_or0 = (fa(((s_wallace_cla24_fa420_or0 >> 0) & 0x01), ((s_wallace_cla24_fa336_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa357_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa422_xor1 = (fa(((s_wallace_cla24_fa421_or0 >> 0) & 0x01), ((s_wallace_cla24_fa314_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa337_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa422_or0 = (fa(((s_wallace_cla24_fa421_or0 >> 0) & 0x01), ((s_wallace_cla24_fa314_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa337_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa423_xor1 = (fa(((s_wallace_cla24_fa422_or0 >> 0) & 0x01), ((s_wallace_cla24_fa290_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa315_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa423_or0 = (fa(((s_wallace_cla24_fa422_or0 >> 0) & 0x01), ((s_wallace_cla24_fa290_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa315_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa424_xor1 = (fa(((s_wallace_cla24_fa423_or0 >> 0) & 0x01), ((s_wallace_cla24_fa264_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa291_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa424_or0 = (fa(((s_wallace_cla24_fa423_or0 >> 0) & 0x01), ((s_wallace_cla24_fa264_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa291_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa425_xor1 = (fa(((s_wallace_cla24_fa424_or0 >> 0) & 0x01), ((s_wallace_cla24_fa236_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa265_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa425_or0 = (fa(((s_wallace_cla24_fa424_or0 >> 0) & 0x01), ((s_wallace_cla24_fa236_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa265_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa426_xor1 = (fa(((s_wallace_cla24_fa425_or0 >> 0) & 0x01), ((s_wallace_cla24_fa237_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa266_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa426_or0 = (fa(((s_wallace_cla24_fa425_or0 >> 0) & 0x01), ((s_wallace_cla24_fa237_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa266_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa427_xor1 = (fa(((s_wallace_cla24_fa426_or0 >> 0) & 0x01), ((s_wallace_cla24_fa294_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa319_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa427_or0 = (fa(((s_wallace_cla24_fa426_or0 >> 0) & 0x01), ((s_wallace_cla24_fa294_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa319_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa428_xor1 = (fa(((s_wallace_cla24_fa427_or0 >> 0) & 0x01), ((s_wallace_cla24_fa320_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa343_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa428_or0 = (fa(((s_wallace_cla24_fa427_or0 >> 0) & 0x01), ((s_wallace_cla24_fa320_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa343_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa429_xor1 = (fa(((s_wallace_cla24_fa428_or0 >> 0) & 0x01), ((s_wallace_cla24_fa344_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa365_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa429_or0 = (fa(((s_wallace_cla24_fa428_or0 >> 0) & 0x01), ((s_wallace_cla24_fa344_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa365_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa430_xor1 = (fa(((s_wallace_cla24_fa429_or0 >> 0) & 0x01), ((s_wallace_cla24_fa366_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa385_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa430_or0 = (fa(((s_wallace_cla24_fa429_or0 >> 0) & 0x01), ((s_wallace_cla24_fa366_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa385_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa431_xor1 = (fa(((s_wallace_cla24_fa430_or0 >> 0) & 0x01), ((s_wallace_cla24_fa386_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa403_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa431_or0 = (fa(((s_wallace_cla24_fa430_or0 >> 0) & 0x01), ((s_wallace_cla24_fa386_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa403_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_ha16_xor0 = (ha(((s_wallace_cla24_fa392_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa407_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_ha16_and0 = (ha(((s_wallace_cla24_fa392_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa407_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa432_xor1 = (fa(((s_wallace_cla24_ha16_and0 >> 0) & 0x01), ((s_wallace_cla24_fa376_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa393_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa432_or0 = (fa(((s_wallace_cla24_ha16_and0 >> 0) & 0x01), ((s_wallace_cla24_fa376_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa393_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa433_xor1 = (fa(((s_wallace_cla24_fa432_or0 >> 0) & 0x01), ((s_wallace_cla24_fa358_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa377_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa433_or0 = (fa(((s_wallace_cla24_fa432_or0 >> 0) & 0x01), ((s_wallace_cla24_fa358_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa377_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa434_xor1 = (fa(((s_wallace_cla24_fa433_or0 >> 0) & 0x01), ((s_wallace_cla24_fa338_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa359_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa434_or0 = (fa(((s_wallace_cla24_fa433_or0 >> 0) & 0x01), ((s_wallace_cla24_fa338_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa359_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa435_xor1 = (fa(((s_wallace_cla24_fa434_or0 >> 0) & 0x01), ((s_wallace_cla24_fa316_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa339_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa435_or0 = (fa(((s_wallace_cla24_fa434_or0 >> 0) & 0x01), ((s_wallace_cla24_fa316_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa339_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa436_xor1 = (fa(((s_wallace_cla24_fa435_or0 >> 0) & 0x01), ((s_wallace_cla24_fa292_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa317_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa436_or0 = (fa(((s_wallace_cla24_fa435_or0 >> 0) & 0x01), ((s_wallace_cla24_fa292_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa317_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa437_xor1 = (fa(((s_wallace_cla24_fa436_or0 >> 0) & 0x01), ((s_wallace_cla24_fa293_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa318_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa437_or0 = (fa(((s_wallace_cla24_fa436_or0 >> 0) & 0x01), ((s_wallace_cla24_fa293_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa318_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa438_xor1 = (fa(((s_wallace_cla24_fa437_or0 >> 0) & 0x01), ((s_wallace_cla24_fa342_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa363_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa438_or0 = (fa(((s_wallace_cla24_fa437_or0 >> 0) & 0x01), ((s_wallace_cla24_fa342_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa363_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa439_xor1 = (fa(((s_wallace_cla24_fa438_or0 >> 0) & 0x01), ((s_wallace_cla24_fa364_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa383_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa439_or0 = (fa(((s_wallace_cla24_fa438_or0 >> 0) & 0x01), ((s_wallace_cla24_fa364_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa383_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa440_xor1 = (fa(((s_wallace_cla24_fa439_or0 >> 0) & 0x01), ((s_wallace_cla24_fa384_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa401_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa440_or0 = (fa(((s_wallace_cla24_fa439_or0 >> 0) & 0x01), ((s_wallace_cla24_fa384_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa401_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa441_xor1 = (fa(((s_wallace_cla24_fa440_or0 >> 0) & 0x01), ((s_wallace_cla24_fa402_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa417_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa441_or0 = (fa(((s_wallace_cla24_fa440_or0 >> 0) & 0x01), ((s_wallace_cla24_fa402_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa417_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_ha17_xor0 = (ha(((s_wallace_cla24_fa408_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa421_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_ha17_and0 = (ha(((s_wallace_cla24_fa408_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa421_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa442_xor1 = (fa(((s_wallace_cla24_ha17_and0 >> 0) & 0x01), ((s_wallace_cla24_fa394_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa409_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa442_or0 = (fa(((s_wallace_cla24_ha17_and0 >> 0) & 0x01), ((s_wallace_cla24_fa394_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa409_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa443_xor1 = (fa(((s_wallace_cla24_fa442_or0 >> 0) & 0x01), ((s_wallace_cla24_fa378_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa395_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa443_or0 = (fa(((s_wallace_cla24_fa442_or0 >> 0) & 0x01), ((s_wallace_cla24_fa378_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa395_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa444_xor1 = (fa(((s_wallace_cla24_fa443_or0 >> 0) & 0x01), ((s_wallace_cla24_fa360_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa379_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa444_or0 = (fa(((s_wallace_cla24_fa443_or0 >> 0) & 0x01), ((s_wallace_cla24_fa360_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa379_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa445_xor1 = (fa(((s_wallace_cla24_fa444_or0 >> 0) & 0x01), ((s_wallace_cla24_fa340_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa361_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa445_or0 = (fa(((s_wallace_cla24_fa444_or0 >> 0) & 0x01), ((s_wallace_cla24_fa340_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa361_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa446_xor1 = (fa(((s_wallace_cla24_fa445_or0 >> 0) & 0x01), ((s_wallace_cla24_fa341_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa362_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa446_or0 = (fa(((s_wallace_cla24_fa445_or0 >> 0) & 0x01), ((s_wallace_cla24_fa341_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa362_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa447_xor1 = (fa(((s_wallace_cla24_fa446_or0 >> 0) & 0x01), ((s_wallace_cla24_fa382_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa399_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa447_or0 = (fa(((s_wallace_cla24_fa446_or0 >> 0) & 0x01), ((s_wallace_cla24_fa382_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa399_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa448_xor1 = (fa(((s_wallace_cla24_fa447_or0 >> 0) & 0x01), ((s_wallace_cla24_fa400_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa415_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa448_or0 = (fa(((s_wallace_cla24_fa447_or0 >> 0) & 0x01), ((s_wallace_cla24_fa400_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa415_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa449_xor1 = (fa(((s_wallace_cla24_fa448_or0 >> 0) & 0x01), ((s_wallace_cla24_fa416_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa429_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa449_or0 = (fa(((s_wallace_cla24_fa448_or0 >> 0) & 0x01), ((s_wallace_cla24_fa416_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa429_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_ha18_xor0 = (ha(((s_wallace_cla24_fa422_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa433_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_ha18_and0 = (ha(((s_wallace_cla24_fa422_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa433_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa450_xor1 = (fa(((s_wallace_cla24_ha18_and0 >> 0) & 0x01), ((s_wallace_cla24_fa410_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa423_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa450_or0 = (fa(((s_wallace_cla24_ha18_and0 >> 0) & 0x01), ((s_wallace_cla24_fa410_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa423_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa451_xor1 = (fa(((s_wallace_cla24_fa450_or0 >> 0) & 0x01), ((s_wallace_cla24_fa396_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa411_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa451_or0 = (fa(((s_wallace_cla24_fa450_or0 >> 0) & 0x01), ((s_wallace_cla24_fa396_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa411_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa452_xor1 = (fa(((s_wallace_cla24_fa451_or0 >> 0) & 0x01), ((s_wallace_cla24_fa380_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa397_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa452_or0 = (fa(((s_wallace_cla24_fa451_or0 >> 0) & 0x01), ((s_wallace_cla24_fa380_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa397_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa453_xor1 = (fa(((s_wallace_cla24_fa452_or0 >> 0) & 0x01), ((s_wallace_cla24_fa381_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa398_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa453_or0 = (fa(((s_wallace_cla24_fa452_or0 >> 0) & 0x01), ((s_wallace_cla24_fa381_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa398_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa454_xor1 = (fa(((s_wallace_cla24_fa453_or0 >> 0) & 0x01), ((s_wallace_cla24_fa414_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa427_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa454_or0 = (fa(((s_wallace_cla24_fa453_or0 >> 0) & 0x01), ((s_wallace_cla24_fa414_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa427_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa455_xor1 = (fa(((s_wallace_cla24_fa454_or0 >> 0) & 0x01), ((s_wallace_cla24_fa428_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa439_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa455_or0 = (fa(((s_wallace_cla24_fa454_or0 >> 0) & 0x01), ((s_wallace_cla24_fa428_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa439_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_ha19_xor0 = (ha(((s_wallace_cla24_fa434_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa443_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_ha19_and0 = (ha(((s_wallace_cla24_fa434_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa443_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa456_xor1 = (fa(((s_wallace_cla24_ha19_and0 >> 0) & 0x01), ((s_wallace_cla24_fa424_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa435_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa456_or0 = (fa(((s_wallace_cla24_ha19_and0 >> 0) & 0x01), ((s_wallace_cla24_fa424_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa435_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa457_xor1 = (fa(((s_wallace_cla24_fa456_or0 >> 0) & 0x01), ((s_wallace_cla24_fa412_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa425_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa457_or0 = (fa(((s_wallace_cla24_fa456_or0 >> 0) & 0x01), ((s_wallace_cla24_fa412_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa425_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa458_xor1 = (fa(((s_wallace_cla24_fa457_or0 >> 0) & 0x01), ((s_wallace_cla24_fa413_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa426_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa458_or0 = (fa(((s_wallace_cla24_fa457_or0 >> 0) & 0x01), ((s_wallace_cla24_fa413_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa426_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa459_xor1 = (fa(((s_wallace_cla24_fa458_or0 >> 0) & 0x01), ((s_wallace_cla24_fa438_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa447_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa459_or0 = (fa(((s_wallace_cla24_fa458_or0 >> 0) & 0x01), ((s_wallace_cla24_fa438_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa447_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_ha20_xor0 = (ha(((s_wallace_cla24_fa444_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa451_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_ha20_and0 = (ha(((s_wallace_cla24_fa444_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa451_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa460_xor1 = (fa(((s_wallace_cla24_ha20_and0 >> 0) & 0x01), ((s_wallace_cla24_fa436_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa445_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa460_or0 = (fa(((s_wallace_cla24_ha20_and0 >> 0) & 0x01), ((s_wallace_cla24_fa436_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa445_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa461_xor1 = (fa(((s_wallace_cla24_fa460_or0 >> 0) & 0x01), ((s_wallace_cla24_fa437_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa446_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa461_or0 = (fa(((s_wallace_cla24_fa460_or0 >> 0) & 0x01), ((s_wallace_cla24_fa437_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa446_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_ha21_xor0 = (ha(((s_wallace_cla24_fa452_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa457_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_ha21_and0 = (ha(((s_wallace_cla24_fa452_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa457_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa462_xor1 = (fa(((s_wallace_cla24_ha21_and0 >> 0) & 0x01), ((s_wallace_cla24_fa453_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa458_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa462_or0 = (fa(((s_wallace_cla24_ha21_and0 >> 0) & 0x01), ((s_wallace_cla24_fa453_xor1 >> 0) & 0x01), ((s_wallace_cla24_fa458_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa463_xor1 = (fa(((s_wallace_cla24_fa462_or0 >> 0) & 0x01), ((s_wallace_cla24_fa461_or0 >> 0) & 0x01), ((s_wallace_cla24_fa454_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa463_or0 = (fa(((s_wallace_cla24_fa462_or0 >> 0) & 0x01), ((s_wallace_cla24_fa461_or0 >> 0) & 0x01), ((s_wallace_cla24_fa454_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa464_xor1 = (fa(((s_wallace_cla24_fa463_or0 >> 0) & 0x01), ((s_wallace_cla24_fa459_or0 >> 0) & 0x01), ((s_wallace_cla24_fa448_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa464_or0 = (fa(((s_wallace_cla24_fa463_or0 >> 0) & 0x01), ((s_wallace_cla24_fa459_or0 >> 0) & 0x01), ((s_wallace_cla24_fa448_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa465_xor1 = (fa(((s_wallace_cla24_fa464_or0 >> 0) & 0x01), ((s_wallace_cla24_fa455_or0 >> 0) & 0x01), ((s_wallace_cla24_fa440_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa465_or0 = (fa(((s_wallace_cla24_fa464_or0 >> 0) & 0x01), ((s_wallace_cla24_fa455_or0 >> 0) & 0x01), ((s_wallace_cla24_fa440_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa466_xor1 = (fa(((s_wallace_cla24_fa465_or0 >> 0) & 0x01), ((s_wallace_cla24_fa449_or0 >> 0) & 0x01), ((s_wallace_cla24_fa430_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa466_or0 = (fa(((s_wallace_cla24_fa465_or0 >> 0) & 0x01), ((s_wallace_cla24_fa449_or0 >> 0) & 0x01), ((s_wallace_cla24_fa430_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa467_xor1 = (fa(((s_wallace_cla24_fa466_or0 >> 0) & 0x01), ((s_wallace_cla24_fa441_or0 >> 0) & 0x01), ((s_wallace_cla24_fa418_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa467_or0 = (fa(((s_wallace_cla24_fa466_or0 >> 0) & 0x01), ((s_wallace_cla24_fa441_or0 >> 0) & 0x01), ((s_wallace_cla24_fa418_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa468_xor1 = (fa(((s_wallace_cla24_fa467_or0 >> 0) & 0x01), ((s_wallace_cla24_fa431_or0 >> 0) & 0x01), ((s_wallace_cla24_fa404_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa468_or0 = (fa(((s_wallace_cla24_fa467_or0 >> 0) & 0x01), ((s_wallace_cla24_fa431_or0 >> 0) & 0x01), ((s_wallace_cla24_fa404_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa469_xor1 = (fa(((s_wallace_cla24_fa468_or0 >> 0) & 0x01), ((s_wallace_cla24_fa419_or0 >> 0) & 0x01), ((s_wallace_cla24_fa388_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa469_or0 = (fa(((s_wallace_cla24_fa468_or0 >> 0) & 0x01), ((s_wallace_cla24_fa419_or0 >> 0) & 0x01), ((s_wallace_cla24_fa388_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa470_xor1 = (fa(((s_wallace_cla24_fa469_or0 >> 0) & 0x01), ((s_wallace_cla24_fa405_or0 >> 0) & 0x01), ((s_wallace_cla24_fa370_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa470_or0 = (fa(((s_wallace_cla24_fa469_or0 >> 0) & 0x01), ((s_wallace_cla24_fa405_or0 >> 0) & 0x01), ((s_wallace_cla24_fa370_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa471_xor1 = (fa(((s_wallace_cla24_fa470_or0 >> 0) & 0x01), ((s_wallace_cla24_fa389_or0 >> 0) & 0x01), ((s_wallace_cla24_fa350_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa471_or0 = (fa(((s_wallace_cla24_fa470_or0 >> 0) & 0x01), ((s_wallace_cla24_fa389_or0 >> 0) & 0x01), ((s_wallace_cla24_fa350_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa472_xor1 = (fa(((s_wallace_cla24_fa471_or0 >> 0) & 0x01), ((s_wallace_cla24_fa371_or0 >> 0) & 0x01), ((s_wallace_cla24_fa328_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa472_or0 = (fa(((s_wallace_cla24_fa471_or0 >> 0) & 0x01), ((s_wallace_cla24_fa371_or0 >> 0) & 0x01), ((s_wallace_cla24_fa328_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa473_xor1 = (fa(((s_wallace_cla24_fa472_or0 >> 0) & 0x01), ((s_wallace_cla24_fa351_or0 >> 0) & 0x01), ((s_wallace_cla24_fa304_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa473_or0 = (fa(((s_wallace_cla24_fa472_or0 >> 0) & 0x01), ((s_wallace_cla24_fa351_or0 >> 0) & 0x01), ((s_wallace_cla24_fa304_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa474_xor1 = (fa(((s_wallace_cla24_fa473_or0 >> 0) & 0x01), ((s_wallace_cla24_fa329_or0 >> 0) & 0x01), ((s_wallace_cla24_fa278_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa474_or0 = (fa(((s_wallace_cla24_fa473_or0 >> 0) & 0x01), ((s_wallace_cla24_fa329_or0 >> 0) & 0x01), ((s_wallace_cla24_fa278_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa475_xor1 = (fa(((s_wallace_cla24_fa474_or0 >> 0) & 0x01), ((s_wallace_cla24_fa305_or0 >> 0) & 0x01), ((s_wallace_cla24_fa250_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa475_or0 = (fa(((s_wallace_cla24_fa474_or0 >> 0) & 0x01), ((s_wallace_cla24_fa305_or0 >> 0) & 0x01), ((s_wallace_cla24_fa250_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa476_xor1 = (fa(((s_wallace_cla24_fa475_or0 >> 0) & 0x01), ((s_wallace_cla24_fa279_or0 >> 0) & 0x01), ((s_wallace_cla24_fa220_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa476_or0 = (fa(((s_wallace_cla24_fa475_or0 >> 0) & 0x01), ((s_wallace_cla24_fa279_or0 >> 0) & 0x01), ((s_wallace_cla24_fa220_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa477_xor1 = (fa(((s_wallace_cla24_fa476_or0 >> 0) & 0x01), ((s_wallace_cla24_fa251_or0 >> 0) & 0x01), ((s_wallace_cla24_fa188_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa477_or0 = (fa(((s_wallace_cla24_fa476_or0 >> 0) & 0x01), ((s_wallace_cla24_fa251_or0 >> 0) & 0x01), ((s_wallace_cla24_fa188_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa478_xor1 = (fa(((s_wallace_cla24_fa477_or0 >> 0) & 0x01), ((s_wallace_cla24_fa221_or0 >> 0) & 0x01), ((s_wallace_cla24_fa154_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa478_or0 = (fa(((s_wallace_cla24_fa477_or0 >> 0) & 0x01), ((s_wallace_cla24_fa221_or0 >> 0) & 0x01), ((s_wallace_cla24_fa154_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa479_xor1 = (fa(((s_wallace_cla24_fa478_or0 >> 0) & 0x01), ((s_wallace_cla24_fa189_or0 >> 0) & 0x01), ((s_wallace_cla24_fa118_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa479_or0 = (fa(((s_wallace_cla24_fa478_or0 >> 0) & 0x01), ((s_wallace_cla24_fa189_or0 >> 0) & 0x01), ((s_wallace_cla24_fa118_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa480_xor1 = (fa(((s_wallace_cla24_fa479_or0 >> 0) & 0x01), ((s_wallace_cla24_fa155_or0 >> 0) & 0x01), ((s_wallace_cla24_fa80_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa480_or0 = (fa(((s_wallace_cla24_fa479_or0 >> 0) & 0x01), ((s_wallace_cla24_fa155_or0 >> 0) & 0x01), ((s_wallace_cla24_fa80_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_fa481_xor1 = (fa(((s_wallace_cla24_fa480_or0 >> 0) & 0x01), ((s_wallace_cla24_fa119_or0 >> 0) & 0x01), ((s_wallace_cla24_fa40_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa481_or0 = (fa(((s_wallace_cla24_fa480_or0 >> 0) & 0x01), ((s_wallace_cla24_fa119_or0 >> 0) & 0x01), ((s_wallace_cla24_fa40_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_nand_21_23 = nand_gate(((a >> 21) & 0x01), ((b >> 23) & 0x01));
|
|
s_wallace_cla24_fa482_xor1 = (fa(((s_wallace_cla24_fa481_or0 >> 0) & 0x01), ((s_wallace_cla24_fa81_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_21_23 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa482_or0 = (fa(((s_wallace_cla24_fa481_or0 >> 0) & 0x01), ((s_wallace_cla24_fa81_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_21_23 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_nand_23_22 = nand_gate(((a >> 23) & 0x01), ((b >> 22) & 0x01));
|
|
s_wallace_cla24_fa483_xor1 = (fa(((s_wallace_cla24_fa482_or0 >> 0) & 0x01), ((s_wallace_cla24_fa41_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_22 >> 0) & 0x01)) >> 0) & 0x01;
|
|
s_wallace_cla24_fa483_or0 = (fa(((s_wallace_cla24_fa482_or0 >> 0) & 0x01), ((s_wallace_cla24_fa41_or0 >> 0) & 0x01), ((s_wallace_cla24_nand_23_22 >> 0) & 0x01)) >> 1) & 0x01;
|
|
s_wallace_cla24_and_0_0 = and_gate(((a >> 0) & 0x01), ((b >> 0) & 0x01));
|
|
s_wallace_cla24_and_1_0 = and_gate(((a >> 1) & 0x01), ((b >> 0) & 0x01));
|
|
s_wallace_cla24_and_0_2 = and_gate(((a >> 0) & 0x01), ((b >> 2) & 0x01));
|
|
s_wallace_cla24_nand_22_23 = nand_gate(((a >> 22) & 0x01), ((b >> 23) & 0x01));
|
|
s_wallace_cla24_and_0_1 = and_gate(((a >> 0) & 0x01), ((b >> 1) & 0x01));
|
|
s_wallace_cla24_and_23_23 = and_gate(((a >> 23) & 0x01), ((b >> 23) & 0x01));
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_and_1_0 >> 0) & 0x01ull) << 0;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_and_0_2 >> 0) & 0x01ull) << 1;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa0_xor1 >> 0) & 0x01ull) << 2;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa42_xor1 >> 0) & 0x01ull) << 3;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa82_xor1 >> 0) & 0x01ull) << 4;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa120_xor1 >> 0) & 0x01ull) << 5;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa156_xor1 >> 0) & 0x01ull) << 6;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa190_xor1 >> 0) & 0x01ull) << 7;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa222_xor1 >> 0) & 0x01ull) << 8;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa252_xor1 >> 0) & 0x01ull) << 9;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa280_xor1 >> 0) & 0x01ull) << 10;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa306_xor1 >> 0) & 0x01ull) << 11;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa330_xor1 >> 0) & 0x01ull) << 12;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa352_xor1 >> 0) & 0x01ull) << 13;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa372_xor1 >> 0) & 0x01ull) << 14;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa390_xor1 >> 0) & 0x01ull) << 15;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa406_xor1 >> 0) & 0x01ull) << 16;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa420_xor1 >> 0) & 0x01ull) << 17;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa432_xor1 >> 0) & 0x01ull) << 18;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa442_xor1 >> 0) & 0x01ull) << 19;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa450_xor1 >> 0) & 0x01ull) << 20;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa456_xor1 >> 0) & 0x01ull) << 21;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa460_xor1 >> 0) & 0x01ull) << 22;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa461_xor1 >> 0) & 0x01ull) << 23;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa459_xor1 >> 0) & 0x01ull) << 24;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa455_xor1 >> 0) & 0x01ull) << 25;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa449_xor1 >> 0) & 0x01ull) << 26;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa441_xor1 >> 0) & 0x01ull) << 27;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa431_xor1 >> 0) & 0x01ull) << 28;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa419_xor1 >> 0) & 0x01ull) << 29;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa405_xor1 >> 0) & 0x01ull) << 30;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa389_xor1 >> 0) & 0x01ull) << 31;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa371_xor1 >> 0) & 0x01ull) << 32;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa351_xor1 >> 0) & 0x01ull) << 33;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa329_xor1 >> 0) & 0x01ull) << 34;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa305_xor1 >> 0) & 0x01ull) << 35;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa279_xor1 >> 0) & 0x01ull) << 36;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa251_xor1 >> 0) & 0x01ull) << 37;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa221_xor1 >> 0) & 0x01ull) << 38;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa189_xor1 >> 0) & 0x01ull) << 39;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa155_xor1 >> 0) & 0x01ull) << 40;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa119_xor1 >> 0) & 0x01ull) << 41;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa81_xor1 >> 0) & 0x01ull) << 42;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa41_xor1 >> 0) & 0x01ull) << 43;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_nand_22_23 >> 0) & 0x01ull) << 44;
|
|
s_wallace_cla24_u_cla46_a |= ((s_wallace_cla24_fa483_or0 >> 0) & 0x01ull) << 45;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_and_0_1 >> 0) & 0x01ull) << 0;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_ha0_xor0 >> 0) & 0x01ull) << 1;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_ha1_xor0 >> 0) & 0x01ull) << 2;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_ha2_xor0 >> 0) & 0x01ull) << 3;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_ha3_xor0 >> 0) & 0x01ull) << 4;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_ha4_xor0 >> 0) & 0x01ull) << 5;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_ha5_xor0 >> 0) & 0x01ull) << 6;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_ha6_xor0 >> 0) & 0x01ull) << 7;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_ha7_xor0 >> 0) & 0x01ull) << 8;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_ha8_xor0 >> 0) & 0x01ull) << 9;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_ha9_xor0 >> 0) & 0x01ull) << 10;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_ha10_xor0 >> 0) & 0x01ull) << 11;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_ha11_xor0 >> 0) & 0x01ull) << 12;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_ha12_xor0 >> 0) & 0x01ull) << 13;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_ha13_xor0 >> 0) & 0x01ull) << 14;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_ha14_xor0 >> 0) & 0x01ull) << 15;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_ha15_xor0 >> 0) & 0x01ull) << 16;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_ha16_xor0 >> 0) & 0x01ull) << 17;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_ha17_xor0 >> 0) & 0x01ull) << 18;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_ha18_xor0 >> 0) & 0x01ull) << 19;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_ha19_xor0 >> 0) & 0x01ull) << 20;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_ha20_xor0 >> 0) & 0x01ull) << 21;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_ha21_xor0 >> 0) & 0x01ull) << 22;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_fa462_xor1 >> 0) & 0x01ull) << 23;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_fa463_xor1 >> 0) & 0x01ull) << 24;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_fa464_xor1 >> 0) & 0x01ull) << 25;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_fa465_xor1 >> 0) & 0x01ull) << 26;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_fa466_xor1 >> 0) & 0x01ull) << 27;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_fa467_xor1 >> 0) & 0x01ull) << 28;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_fa468_xor1 >> 0) & 0x01ull) << 29;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_fa469_xor1 >> 0) & 0x01ull) << 30;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_fa470_xor1 >> 0) & 0x01ull) << 31;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_fa471_xor1 >> 0) & 0x01ull) << 32;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_fa472_xor1 >> 0) & 0x01ull) << 33;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_fa473_xor1 >> 0) & 0x01ull) << 34;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_fa474_xor1 >> 0) & 0x01ull) << 35;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_fa475_xor1 >> 0) & 0x01ull) << 36;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_fa476_xor1 >> 0) & 0x01ull) << 37;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_fa477_xor1 >> 0) & 0x01ull) << 38;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_fa478_xor1 >> 0) & 0x01ull) << 39;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_fa479_xor1 >> 0) & 0x01ull) << 40;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_fa480_xor1 >> 0) & 0x01ull) << 41;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_fa481_xor1 >> 0) & 0x01ull) << 42;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_fa482_xor1 >> 0) & 0x01ull) << 43;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_fa483_xor1 >> 0) & 0x01ull) << 44;
|
|
s_wallace_cla24_u_cla46_b |= ((s_wallace_cla24_and_23_23 >> 0) & 0x01ull) << 45;
|
|
s_wallace_cla24_u_cla46_out = u_cla46(s_wallace_cla24_u_cla46_a, s_wallace_cla24_u_cla46_b);
|
|
s_wallace_cla24_xor0 = not_gate(((s_wallace_cla24_u_cla46_out >> 46) & 0x01));
|
|
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_and_0_0 >> 0) & 0x01ull) << 0;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 0) & 0x01ull) << 1;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 1) & 0x01ull) << 2;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 2) & 0x01ull) << 3;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 3) & 0x01ull) << 4;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 4) & 0x01ull) << 5;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 5) & 0x01ull) << 6;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 6) & 0x01ull) << 7;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 7) & 0x01ull) << 8;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 8) & 0x01ull) << 9;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 9) & 0x01ull) << 10;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 10) & 0x01ull) << 11;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 11) & 0x01ull) << 12;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 12) & 0x01ull) << 13;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 13) & 0x01ull) << 14;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 14) & 0x01ull) << 15;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 15) & 0x01ull) << 16;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 16) & 0x01ull) << 17;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 17) & 0x01ull) << 18;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 18) & 0x01ull) << 19;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 19) & 0x01ull) << 20;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 20) & 0x01ull) << 21;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 21) & 0x01ull) << 22;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 22) & 0x01ull) << 23;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 23) & 0x01ull) << 24;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 24) & 0x01ull) << 25;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 25) & 0x01ull) << 26;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 26) & 0x01ull) << 27;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 27) & 0x01ull) << 28;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 28) & 0x01ull) << 29;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 29) & 0x01ull) << 30;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 30) & 0x01ull) << 31;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 31) & 0x01ull) << 32;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 32) & 0x01ull) << 33;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 33) & 0x01ull) << 34;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 34) & 0x01ull) << 35;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 35) & 0x01ull) << 36;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 36) & 0x01ull) << 37;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 37) & 0x01ull) << 38;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 38) & 0x01ull) << 39;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 39) & 0x01ull) << 40;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 40) & 0x01ull) << 41;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 41) & 0x01ull) << 42;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 42) & 0x01ull) << 43;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 43) & 0x01ull) << 44;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 44) & 0x01ull) << 45;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_u_cla46_out >> 45) & 0x01ull) << 46;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_xor0 >> 0) & 0x01ull) << 47;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_xor0 >> 0) & 0x01ull) << 48;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_xor0 >> 0) & 0x01ull) << 49;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_xor0 >> 0) & 0x01ull) << 50;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_xor0 >> 0) & 0x01ull) << 51;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_xor0 >> 0) & 0x01ull) << 52;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_xor0 >> 0) & 0x01ull) << 53;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_xor0 >> 0) & 0x01ull) << 54;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_xor0 >> 0) & 0x01ull) << 55;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_xor0 >> 0) & 0x01ull) << 56;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_xor0 >> 0) & 0x01ull) << 57;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_xor0 >> 0) & 0x01ull) << 58;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_xor0 >> 0) & 0x01ull) << 59;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_xor0 >> 0) & 0x01ull) << 60;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_xor0 >> 0) & 0x01ull) << 61;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_xor0 >> 0) & 0x01ull) << 62;
|
|
s_wallace_cla24_out |= ((s_wallace_cla24_xor0 >> 0) & 0x01ull) << 63;
|
|
return s_wallace_cla24_out;
|
|
} |