mirror of
https://github.com/ehw-fit/ariths-gen.git
synced 2025-04-20 05:41:25 +01:00
1557 lines
126 KiB
C
1557 lines
126 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 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) & 0x01) << 0;
|
|
ha_out |= ((ha_and0 >> 0) & 0x01) << 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) & 0x01) << 0;
|
|
fa_out |= ((fa_or0 >> 0) & 0x01) << 1;
|
|
return fa_out;
|
|
}
|
|
|
|
uint64_t h_u_arrmul16(uint64_t a, uint64_t b){
|
|
uint64_t h_u_arrmul16_out = 0;
|
|
uint8_t h_u_arrmul16_and0_0 = 0;
|
|
uint8_t h_u_arrmul16_and1_0 = 0;
|
|
uint8_t h_u_arrmul16_and2_0 = 0;
|
|
uint8_t h_u_arrmul16_and3_0 = 0;
|
|
uint8_t h_u_arrmul16_and4_0 = 0;
|
|
uint8_t h_u_arrmul16_and5_0 = 0;
|
|
uint8_t h_u_arrmul16_and6_0 = 0;
|
|
uint8_t h_u_arrmul16_and7_0 = 0;
|
|
uint8_t h_u_arrmul16_and8_0 = 0;
|
|
uint8_t h_u_arrmul16_and9_0 = 0;
|
|
uint8_t h_u_arrmul16_and10_0 = 0;
|
|
uint8_t h_u_arrmul16_and11_0 = 0;
|
|
uint8_t h_u_arrmul16_and12_0 = 0;
|
|
uint8_t h_u_arrmul16_and13_0 = 0;
|
|
uint8_t h_u_arrmul16_and14_0 = 0;
|
|
uint8_t h_u_arrmul16_and15_0 = 0;
|
|
uint8_t h_u_arrmul16_and0_1 = 0;
|
|
uint8_t h_u_arrmul16_ha0_1_xor0 = 0;
|
|
uint8_t h_u_arrmul16_ha0_1_and0 = 0;
|
|
uint8_t h_u_arrmul16_and1_1 = 0;
|
|
uint8_t h_u_arrmul16_fa1_1_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa1_1_or0 = 0;
|
|
uint8_t h_u_arrmul16_and2_1 = 0;
|
|
uint8_t h_u_arrmul16_fa2_1_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa2_1_or0 = 0;
|
|
uint8_t h_u_arrmul16_and3_1 = 0;
|
|
uint8_t h_u_arrmul16_fa3_1_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa3_1_or0 = 0;
|
|
uint8_t h_u_arrmul16_and4_1 = 0;
|
|
uint8_t h_u_arrmul16_fa4_1_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa4_1_or0 = 0;
|
|
uint8_t h_u_arrmul16_and5_1 = 0;
|
|
uint8_t h_u_arrmul16_fa5_1_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa5_1_or0 = 0;
|
|
uint8_t h_u_arrmul16_and6_1 = 0;
|
|
uint8_t h_u_arrmul16_fa6_1_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa6_1_or0 = 0;
|
|
uint8_t h_u_arrmul16_and7_1 = 0;
|
|
uint8_t h_u_arrmul16_fa7_1_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa7_1_or0 = 0;
|
|
uint8_t h_u_arrmul16_and8_1 = 0;
|
|
uint8_t h_u_arrmul16_fa8_1_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa8_1_or0 = 0;
|
|
uint8_t h_u_arrmul16_and9_1 = 0;
|
|
uint8_t h_u_arrmul16_fa9_1_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa9_1_or0 = 0;
|
|
uint8_t h_u_arrmul16_and10_1 = 0;
|
|
uint8_t h_u_arrmul16_fa10_1_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa10_1_or0 = 0;
|
|
uint8_t h_u_arrmul16_and11_1 = 0;
|
|
uint8_t h_u_arrmul16_fa11_1_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa11_1_or0 = 0;
|
|
uint8_t h_u_arrmul16_and12_1 = 0;
|
|
uint8_t h_u_arrmul16_fa12_1_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa12_1_or0 = 0;
|
|
uint8_t h_u_arrmul16_and13_1 = 0;
|
|
uint8_t h_u_arrmul16_fa13_1_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa13_1_or0 = 0;
|
|
uint8_t h_u_arrmul16_and14_1 = 0;
|
|
uint8_t h_u_arrmul16_fa14_1_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa14_1_or0 = 0;
|
|
uint8_t h_u_arrmul16_and15_1 = 0;
|
|
uint8_t h_u_arrmul16_ha15_1_xor0 = 0;
|
|
uint8_t h_u_arrmul16_ha15_1_and0 = 0;
|
|
uint8_t h_u_arrmul16_and0_2 = 0;
|
|
uint8_t h_u_arrmul16_ha0_2_xor0 = 0;
|
|
uint8_t h_u_arrmul16_ha0_2_and0 = 0;
|
|
uint8_t h_u_arrmul16_and1_2 = 0;
|
|
uint8_t h_u_arrmul16_fa1_2_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa1_2_or0 = 0;
|
|
uint8_t h_u_arrmul16_and2_2 = 0;
|
|
uint8_t h_u_arrmul16_fa2_2_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa2_2_or0 = 0;
|
|
uint8_t h_u_arrmul16_and3_2 = 0;
|
|
uint8_t h_u_arrmul16_fa3_2_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa3_2_or0 = 0;
|
|
uint8_t h_u_arrmul16_and4_2 = 0;
|
|
uint8_t h_u_arrmul16_fa4_2_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa4_2_or0 = 0;
|
|
uint8_t h_u_arrmul16_and5_2 = 0;
|
|
uint8_t h_u_arrmul16_fa5_2_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa5_2_or0 = 0;
|
|
uint8_t h_u_arrmul16_and6_2 = 0;
|
|
uint8_t h_u_arrmul16_fa6_2_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa6_2_or0 = 0;
|
|
uint8_t h_u_arrmul16_and7_2 = 0;
|
|
uint8_t h_u_arrmul16_fa7_2_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa7_2_or0 = 0;
|
|
uint8_t h_u_arrmul16_and8_2 = 0;
|
|
uint8_t h_u_arrmul16_fa8_2_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa8_2_or0 = 0;
|
|
uint8_t h_u_arrmul16_and9_2 = 0;
|
|
uint8_t h_u_arrmul16_fa9_2_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa9_2_or0 = 0;
|
|
uint8_t h_u_arrmul16_and10_2 = 0;
|
|
uint8_t h_u_arrmul16_fa10_2_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa10_2_or0 = 0;
|
|
uint8_t h_u_arrmul16_and11_2 = 0;
|
|
uint8_t h_u_arrmul16_fa11_2_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa11_2_or0 = 0;
|
|
uint8_t h_u_arrmul16_and12_2 = 0;
|
|
uint8_t h_u_arrmul16_fa12_2_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa12_2_or0 = 0;
|
|
uint8_t h_u_arrmul16_and13_2 = 0;
|
|
uint8_t h_u_arrmul16_fa13_2_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa13_2_or0 = 0;
|
|
uint8_t h_u_arrmul16_and14_2 = 0;
|
|
uint8_t h_u_arrmul16_fa14_2_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa14_2_or0 = 0;
|
|
uint8_t h_u_arrmul16_and15_2 = 0;
|
|
uint8_t h_u_arrmul16_fa15_2_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa15_2_or0 = 0;
|
|
uint8_t h_u_arrmul16_and0_3 = 0;
|
|
uint8_t h_u_arrmul16_ha0_3_xor0 = 0;
|
|
uint8_t h_u_arrmul16_ha0_3_and0 = 0;
|
|
uint8_t h_u_arrmul16_and1_3 = 0;
|
|
uint8_t h_u_arrmul16_fa1_3_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa1_3_or0 = 0;
|
|
uint8_t h_u_arrmul16_and2_3 = 0;
|
|
uint8_t h_u_arrmul16_fa2_3_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa2_3_or0 = 0;
|
|
uint8_t h_u_arrmul16_and3_3 = 0;
|
|
uint8_t h_u_arrmul16_fa3_3_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa3_3_or0 = 0;
|
|
uint8_t h_u_arrmul16_and4_3 = 0;
|
|
uint8_t h_u_arrmul16_fa4_3_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa4_3_or0 = 0;
|
|
uint8_t h_u_arrmul16_and5_3 = 0;
|
|
uint8_t h_u_arrmul16_fa5_3_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa5_3_or0 = 0;
|
|
uint8_t h_u_arrmul16_and6_3 = 0;
|
|
uint8_t h_u_arrmul16_fa6_3_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa6_3_or0 = 0;
|
|
uint8_t h_u_arrmul16_and7_3 = 0;
|
|
uint8_t h_u_arrmul16_fa7_3_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa7_3_or0 = 0;
|
|
uint8_t h_u_arrmul16_and8_3 = 0;
|
|
uint8_t h_u_arrmul16_fa8_3_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa8_3_or0 = 0;
|
|
uint8_t h_u_arrmul16_and9_3 = 0;
|
|
uint8_t h_u_arrmul16_fa9_3_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa9_3_or0 = 0;
|
|
uint8_t h_u_arrmul16_and10_3 = 0;
|
|
uint8_t h_u_arrmul16_fa10_3_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa10_3_or0 = 0;
|
|
uint8_t h_u_arrmul16_and11_3 = 0;
|
|
uint8_t h_u_arrmul16_fa11_3_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa11_3_or0 = 0;
|
|
uint8_t h_u_arrmul16_and12_3 = 0;
|
|
uint8_t h_u_arrmul16_fa12_3_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa12_3_or0 = 0;
|
|
uint8_t h_u_arrmul16_and13_3 = 0;
|
|
uint8_t h_u_arrmul16_fa13_3_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa13_3_or0 = 0;
|
|
uint8_t h_u_arrmul16_and14_3 = 0;
|
|
uint8_t h_u_arrmul16_fa14_3_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa14_3_or0 = 0;
|
|
uint8_t h_u_arrmul16_and15_3 = 0;
|
|
uint8_t h_u_arrmul16_fa15_3_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa15_3_or0 = 0;
|
|
uint8_t h_u_arrmul16_and0_4 = 0;
|
|
uint8_t h_u_arrmul16_ha0_4_xor0 = 0;
|
|
uint8_t h_u_arrmul16_ha0_4_and0 = 0;
|
|
uint8_t h_u_arrmul16_and1_4 = 0;
|
|
uint8_t h_u_arrmul16_fa1_4_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa1_4_or0 = 0;
|
|
uint8_t h_u_arrmul16_and2_4 = 0;
|
|
uint8_t h_u_arrmul16_fa2_4_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa2_4_or0 = 0;
|
|
uint8_t h_u_arrmul16_and3_4 = 0;
|
|
uint8_t h_u_arrmul16_fa3_4_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa3_4_or0 = 0;
|
|
uint8_t h_u_arrmul16_and4_4 = 0;
|
|
uint8_t h_u_arrmul16_fa4_4_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa4_4_or0 = 0;
|
|
uint8_t h_u_arrmul16_and5_4 = 0;
|
|
uint8_t h_u_arrmul16_fa5_4_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa5_4_or0 = 0;
|
|
uint8_t h_u_arrmul16_and6_4 = 0;
|
|
uint8_t h_u_arrmul16_fa6_4_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa6_4_or0 = 0;
|
|
uint8_t h_u_arrmul16_and7_4 = 0;
|
|
uint8_t h_u_arrmul16_fa7_4_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa7_4_or0 = 0;
|
|
uint8_t h_u_arrmul16_and8_4 = 0;
|
|
uint8_t h_u_arrmul16_fa8_4_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa8_4_or0 = 0;
|
|
uint8_t h_u_arrmul16_and9_4 = 0;
|
|
uint8_t h_u_arrmul16_fa9_4_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa9_4_or0 = 0;
|
|
uint8_t h_u_arrmul16_and10_4 = 0;
|
|
uint8_t h_u_arrmul16_fa10_4_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa10_4_or0 = 0;
|
|
uint8_t h_u_arrmul16_and11_4 = 0;
|
|
uint8_t h_u_arrmul16_fa11_4_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa11_4_or0 = 0;
|
|
uint8_t h_u_arrmul16_and12_4 = 0;
|
|
uint8_t h_u_arrmul16_fa12_4_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa12_4_or0 = 0;
|
|
uint8_t h_u_arrmul16_and13_4 = 0;
|
|
uint8_t h_u_arrmul16_fa13_4_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa13_4_or0 = 0;
|
|
uint8_t h_u_arrmul16_and14_4 = 0;
|
|
uint8_t h_u_arrmul16_fa14_4_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa14_4_or0 = 0;
|
|
uint8_t h_u_arrmul16_and15_4 = 0;
|
|
uint8_t h_u_arrmul16_fa15_4_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa15_4_or0 = 0;
|
|
uint8_t h_u_arrmul16_and0_5 = 0;
|
|
uint8_t h_u_arrmul16_ha0_5_xor0 = 0;
|
|
uint8_t h_u_arrmul16_ha0_5_and0 = 0;
|
|
uint8_t h_u_arrmul16_and1_5 = 0;
|
|
uint8_t h_u_arrmul16_fa1_5_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa1_5_or0 = 0;
|
|
uint8_t h_u_arrmul16_and2_5 = 0;
|
|
uint8_t h_u_arrmul16_fa2_5_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa2_5_or0 = 0;
|
|
uint8_t h_u_arrmul16_and3_5 = 0;
|
|
uint8_t h_u_arrmul16_fa3_5_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa3_5_or0 = 0;
|
|
uint8_t h_u_arrmul16_and4_5 = 0;
|
|
uint8_t h_u_arrmul16_fa4_5_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa4_5_or0 = 0;
|
|
uint8_t h_u_arrmul16_and5_5 = 0;
|
|
uint8_t h_u_arrmul16_fa5_5_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa5_5_or0 = 0;
|
|
uint8_t h_u_arrmul16_and6_5 = 0;
|
|
uint8_t h_u_arrmul16_fa6_5_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa6_5_or0 = 0;
|
|
uint8_t h_u_arrmul16_and7_5 = 0;
|
|
uint8_t h_u_arrmul16_fa7_5_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa7_5_or0 = 0;
|
|
uint8_t h_u_arrmul16_and8_5 = 0;
|
|
uint8_t h_u_arrmul16_fa8_5_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa8_5_or0 = 0;
|
|
uint8_t h_u_arrmul16_and9_5 = 0;
|
|
uint8_t h_u_arrmul16_fa9_5_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa9_5_or0 = 0;
|
|
uint8_t h_u_arrmul16_and10_5 = 0;
|
|
uint8_t h_u_arrmul16_fa10_5_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa10_5_or0 = 0;
|
|
uint8_t h_u_arrmul16_and11_5 = 0;
|
|
uint8_t h_u_arrmul16_fa11_5_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa11_5_or0 = 0;
|
|
uint8_t h_u_arrmul16_and12_5 = 0;
|
|
uint8_t h_u_arrmul16_fa12_5_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa12_5_or0 = 0;
|
|
uint8_t h_u_arrmul16_and13_5 = 0;
|
|
uint8_t h_u_arrmul16_fa13_5_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa13_5_or0 = 0;
|
|
uint8_t h_u_arrmul16_and14_5 = 0;
|
|
uint8_t h_u_arrmul16_fa14_5_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa14_5_or0 = 0;
|
|
uint8_t h_u_arrmul16_and15_5 = 0;
|
|
uint8_t h_u_arrmul16_fa15_5_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa15_5_or0 = 0;
|
|
uint8_t h_u_arrmul16_and0_6 = 0;
|
|
uint8_t h_u_arrmul16_ha0_6_xor0 = 0;
|
|
uint8_t h_u_arrmul16_ha0_6_and0 = 0;
|
|
uint8_t h_u_arrmul16_and1_6 = 0;
|
|
uint8_t h_u_arrmul16_fa1_6_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa1_6_or0 = 0;
|
|
uint8_t h_u_arrmul16_and2_6 = 0;
|
|
uint8_t h_u_arrmul16_fa2_6_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa2_6_or0 = 0;
|
|
uint8_t h_u_arrmul16_and3_6 = 0;
|
|
uint8_t h_u_arrmul16_fa3_6_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa3_6_or0 = 0;
|
|
uint8_t h_u_arrmul16_and4_6 = 0;
|
|
uint8_t h_u_arrmul16_fa4_6_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa4_6_or0 = 0;
|
|
uint8_t h_u_arrmul16_and5_6 = 0;
|
|
uint8_t h_u_arrmul16_fa5_6_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa5_6_or0 = 0;
|
|
uint8_t h_u_arrmul16_and6_6 = 0;
|
|
uint8_t h_u_arrmul16_fa6_6_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa6_6_or0 = 0;
|
|
uint8_t h_u_arrmul16_and7_6 = 0;
|
|
uint8_t h_u_arrmul16_fa7_6_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa7_6_or0 = 0;
|
|
uint8_t h_u_arrmul16_and8_6 = 0;
|
|
uint8_t h_u_arrmul16_fa8_6_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa8_6_or0 = 0;
|
|
uint8_t h_u_arrmul16_and9_6 = 0;
|
|
uint8_t h_u_arrmul16_fa9_6_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa9_6_or0 = 0;
|
|
uint8_t h_u_arrmul16_and10_6 = 0;
|
|
uint8_t h_u_arrmul16_fa10_6_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa10_6_or0 = 0;
|
|
uint8_t h_u_arrmul16_and11_6 = 0;
|
|
uint8_t h_u_arrmul16_fa11_6_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa11_6_or0 = 0;
|
|
uint8_t h_u_arrmul16_and12_6 = 0;
|
|
uint8_t h_u_arrmul16_fa12_6_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa12_6_or0 = 0;
|
|
uint8_t h_u_arrmul16_and13_6 = 0;
|
|
uint8_t h_u_arrmul16_fa13_6_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa13_6_or0 = 0;
|
|
uint8_t h_u_arrmul16_and14_6 = 0;
|
|
uint8_t h_u_arrmul16_fa14_6_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa14_6_or0 = 0;
|
|
uint8_t h_u_arrmul16_and15_6 = 0;
|
|
uint8_t h_u_arrmul16_fa15_6_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa15_6_or0 = 0;
|
|
uint8_t h_u_arrmul16_and0_7 = 0;
|
|
uint8_t h_u_arrmul16_ha0_7_xor0 = 0;
|
|
uint8_t h_u_arrmul16_ha0_7_and0 = 0;
|
|
uint8_t h_u_arrmul16_and1_7 = 0;
|
|
uint8_t h_u_arrmul16_fa1_7_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa1_7_or0 = 0;
|
|
uint8_t h_u_arrmul16_and2_7 = 0;
|
|
uint8_t h_u_arrmul16_fa2_7_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa2_7_or0 = 0;
|
|
uint8_t h_u_arrmul16_and3_7 = 0;
|
|
uint8_t h_u_arrmul16_fa3_7_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa3_7_or0 = 0;
|
|
uint8_t h_u_arrmul16_and4_7 = 0;
|
|
uint8_t h_u_arrmul16_fa4_7_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa4_7_or0 = 0;
|
|
uint8_t h_u_arrmul16_and5_7 = 0;
|
|
uint8_t h_u_arrmul16_fa5_7_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa5_7_or0 = 0;
|
|
uint8_t h_u_arrmul16_and6_7 = 0;
|
|
uint8_t h_u_arrmul16_fa6_7_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa6_7_or0 = 0;
|
|
uint8_t h_u_arrmul16_and7_7 = 0;
|
|
uint8_t h_u_arrmul16_fa7_7_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa7_7_or0 = 0;
|
|
uint8_t h_u_arrmul16_and8_7 = 0;
|
|
uint8_t h_u_arrmul16_fa8_7_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa8_7_or0 = 0;
|
|
uint8_t h_u_arrmul16_and9_7 = 0;
|
|
uint8_t h_u_arrmul16_fa9_7_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa9_7_or0 = 0;
|
|
uint8_t h_u_arrmul16_and10_7 = 0;
|
|
uint8_t h_u_arrmul16_fa10_7_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa10_7_or0 = 0;
|
|
uint8_t h_u_arrmul16_and11_7 = 0;
|
|
uint8_t h_u_arrmul16_fa11_7_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa11_7_or0 = 0;
|
|
uint8_t h_u_arrmul16_and12_7 = 0;
|
|
uint8_t h_u_arrmul16_fa12_7_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa12_7_or0 = 0;
|
|
uint8_t h_u_arrmul16_and13_7 = 0;
|
|
uint8_t h_u_arrmul16_fa13_7_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa13_7_or0 = 0;
|
|
uint8_t h_u_arrmul16_and14_7 = 0;
|
|
uint8_t h_u_arrmul16_fa14_7_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa14_7_or0 = 0;
|
|
uint8_t h_u_arrmul16_and15_7 = 0;
|
|
uint8_t h_u_arrmul16_fa15_7_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa15_7_or0 = 0;
|
|
uint8_t h_u_arrmul16_and0_8 = 0;
|
|
uint8_t h_u_arrmul16_ha0_8_xor0 = 0;
|
|
uint8_t h_u_arrmul16_ha0_8_and0 = 0;
|
|
uint8_t h_u_arrmul16_and1_8 = 0;
|
|
uint8_t h_u_arrmul16_fa1_8_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa1_8_or0 = 0;
|
|
uint8_t h_u_arrmul16_and2_8 = 0;
|
|
uint8_t h_u_arrmul16_fa2_8_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa2_8_or0 = 0;
|
|
uint8_t h_u_arrmul16_and3_8 = 0;
|
|
uint8_t h_u_arrmul16_fa3_8_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa3_8_or0 = 0;
|
|
uint8_t h_u_arrmul16_and4_8 = 0;
|
|
uint8_t h_u_arrmul16_fa4_8_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa4_8_or0 = 0;
|
|
uint8_t h_u_arrmul16_and5_8 = 0;
|
|
uint8_t h_u_arrmul16_fa5_8_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa5_8_or0 = 0;
|
|
uint8_t h_u_arrmul16_and6_8 = 0;
|
|
uint8_t h_u_arrmul16_fa6_8_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa6_8_or0 = 0;
|
|
uint8_t h_u_arrmul16_and7_8 = 0;
|
|
uint8_t h_u_arrmul16_fa7_8_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa7_8_or0 = 0;
|
|
uint8_t h_u_arrmul16_and8_8 = 0;
|
|
uint8_t h_u_arrmul16_fa8_8_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa8_8_or0 = 0;
|
|
uint8_t h_u_arrmul16_and9_8 = 0;
|
|
uint8_t h_u_arrmul16_fa9_8_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa9_8_or0 = 0;
|
|
uint8_t h_u_arrmul16_and10_8 = 0;
|
|
uint8_t h_u_arrmul16_fa10_8_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa10_8_or0 = 0;
|
|
uint8_t h_u_arrmul16_and11_8 = 0;
|
|
uint8_t h_u_arrmul16_fa11_8_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa11_8_or0 = 0;
|
|
uint8_t h_u_arrmul16_and12_8 = 0;
|
|
uint8_t h_u_arrmul16_fa12_8_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa12_8_or0 = 0;
|
|
uint8_t h_u_arrmul16_and13_8 = 0;
|
|
uint8_t h_u_arrmul16_fa13_8_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa13_8_or0 = 0;
|
|
uint8_t h_u_arrmul16_and14_8 = 0;
|
|
uint8_t h_u_arrmul16_fa14_8_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa14_8_or0 = 0;
|
|
uint8_t h_u_arrmul16_and15_8 = 0;
|
|
uint8_t h_u_arrmul16_fa15_8_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa15_8_or0 = 0;
|
|
uint8_t h_u_arrmul16_and0_9 = 0;
|
|
uint8_t h_u_arrmul16_ha0_9_xor0 = 0;
|
|
uint8_t h_u_arrmul16_ha0_9_and0 = 0;
|
|
uint8_t h_u_arrmul16_and1_9 = 0;
|
|
uint8_t h_u_arrmul16_fa1_9_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa1_9_or0 = 0;
|
|
uint8_t h_u_arrmul16_and2_9 = 0;
|
|
uint8_t h_u_arrmul16_fa2_9_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa2_9_or0 = 0;
|
|
uint8_t h_u_arrmul16_and3_9 = 0;
|
|
uint8_t h_u_arrmul16_fa3_9_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa3_9_or0 = 0;
|
|
uint8_t h_u_arrmul16_and4_9 = 0;
|
|
uint8_t h_u_arrmul16_fa4_9_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa4_9_or0 = 0;
|
|
uint8_t h_u_arrmul16_and5_9 = 0;
|
|
uint8_t h_u_arrmul16_fa5_9_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa5_9_or0 = 0;
|
|
uint8_t h_u_arrmul16_and6_9 = 0;
|
|
uint8_t h_u_arrmul16_fa6_9_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa6_9_or0 = 0;
|
|
uint8_t h_u_arrmul16_and7_9 = 0;
|
|
uint8_t h_u_arrmul16_fa7_9_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa7_9_or0 = 0;
|
|
uint8_t h_u_arrmul16_and8_9 = 0;
|
|
uint8_t h_u_arrmul16_fa8_9_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa8_9_or0 = 0;
|
|
uint8_t h_u_arrmul16_and9_9 = 0;
|
|
uint8_t h_u_arrmul16_fa9_9_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa9_9_or0 = 0;
|
|
uint8_t h_u_arrmul16_and10_9 = 0;
|
|
uint8_t h_u_arrmul16_fa10_9_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa10_9_or0 = 0;
|
|
uint8_t h_u_arrmul16_and11_9 = 0;
|
|
uint8_t h_u_arrmul16_fa11_9_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa11_9_or0 = 0;
|
|
uint8_t h_u_arrmul16_and12_9 = 0;
|
|
uint8_t h_u_arrmul16_fa12_9_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa12_9_or0 = 0;
|
|
uint8_t h_u_arrmul16_and13_9 = 0;
|
|
uint8_t h_u_arrmul16_fa13_9_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa13_9_or0 = 0;
|
|
uint8_t h_u_arrmul16_and14_9 = 0;
|
|
uint8_t h_u_arrmul16_fa14_9_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa14_9_or0 = 0;
|
|
uint8_t h_u_arrmul16_and15_9 = 0;
|
|
uint8_t h_u_arrmul16_fa15_9_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa15_9_or0 = 0;
|
|
uint8_t h_u_arrmul16_and0_10 = 0;
|
|
uint8_t h_u_arrmul16_ha0_10_xor0 = 0;
|
|
uint8_t h_u_arrmul16_ha0_10_and0 = 0;
|
|
uint8_t h_u_arrmul16_and1_10 = 0;
|
|
uint8_t h_u_arrmul16_fa1_10_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa1_10_or0 = 0;
|
|
uint8_t h_u_arrmul16_and2_10 = 0;
|
|
uint8_t h_u_arrmul16_fa2_10_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa2_10_or0 = 0;
|
|
uint8_t h_u_arrmul16_and3_10 = 0;
|
|
uint8_t h_u_arrmul16_fa3_10_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa3_10_or0 = 0;
|
|
uint8_t h_u_arrmul16_and4_10 = 0;
|
|
uint8_t h_u_arrmul16_fa4_10_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa4_10_or0 = 0;
|
|
uint8_t h_u_arrmul16_and5_10 = 0;
|
|
uint8_t h_u_arrmul16_fa5_10_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa5_10_or0 = 0;
|
|
uint8_t h_u_arrmul16_and6_10 = 0;
|
|
uint8_t h_u_arrmul16_fa6_10_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa6_10_or0 = 0;
|
|
uint8_t h_u_arrmul16_and7_10 = 0;
|
|
uint8_t h_u_arrmul16_fa7_10_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa7_10_or0 = 0;
|
|
uint8_t h_u_arrmul16_and8_10 = 0;
|
|
uint8_t h_u_arrmul16_fa8_10_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa8_10_or0 = 0;
|
|
uint8_t h_u_arrmul16_and9_10 = 0;
|
|
uint8_t h_u_arrmul16_fa9_10_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa9_10_or0 = 0;
|
|
uint8_t h_u_arrmul16_and10_10 = 0;
|
|
uint8_t h_u_arrmul16_fa10_10_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa10_10_or0 = 0;
|
|
uint8_t h_u_arrmul16_and11_10 = 0;
|
|
uint8_t h_u_arrmul16_fa11_10_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa11_10_or0 = 0;
|
|
uint8_t h_u_arrmul16_and12_10 = 0;
|
|
uint8_t h_u_arrmul16_fa12_10_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa12_10_or0 = 0;
|
|
uint8_t h_u_arrmul16_and13_10 = 0;
|
|
uint8_t h_u_arrmul16_fa13_10_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa13_10_or0 = 0;
|
|
uint8_t h_u_arrmul16_and14_10 = 0;
|
|
uint8_t h_u_arrmul16_fa14_10_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa14_10_or0 = 0;
|
|
uint8_t h_u_arrmul16_and15_10 = 0;
|
|
uint8_t h_u_arrmul16_fa15_10_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa15_10_or0 = 0;
|
|
uint8_t h_u_arrmul16_and0_11 = 0;
|
|
uint8_t h_u_arrmul16_ha0_11_xor0 = 0;
|
|
uint8_t h_u_arrmul16_ha0_11_and0 = 0;
|
|
uint8_t h_u_arrmul16_and1_11 = 0;
|
|
uint8_t h_u_arrmul16_fa1_11_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa1_11_or0 = 0;
|
|
uint8_t h_u_arrmul16_and2_11 = 0;
|
|
uint8_t h_u_arrmul16_fa2_11_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa2_11_or0 = 0;
|
|
uint8_t h_u_arrmul16_and3_11 = 0;
|
|
uint8_t h_u_arrmul16_fa3_11_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa3_11_or0 = 0;
|
|
uint8_t h_u_arrmul16_and4_11 = 0;
|
|
uint8_t h_u_arrmul16_fa4_11_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa4_11_or0 = 0;
|
|
uint8_t h_u_arrmul16_and5_11 = 0;
|
|
uint8_t h_u_arrmul16_fa5_11_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa5_11_or0 = 0;
|
|
uint8_t h_u_arrmul16_and6_11 = 0;
|
|
uint8_t h_u_arrmul16_fa6_11_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa6_11_or0 = 0;
|
|
uint8_t h_u_arrmul16_and7_11 = 0;
|
|
uint8_t h_u_arrmul16_fa7_11_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa7_11_or0 = 0;
|
|
uint8_t h_u_arrmul16_and8_11 = 0;
|
|
uint8_t h_u_arrmul16_fa8_11_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa8_11_or0 = 0;
|
|
uint8_t h_u_arrmul16_and9_11 = 0;
|
|
uint8_t h_u_arrmul16_fa9_11_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa9_11_or0 = 0;
|
|
uint8_t h_u_arrmul16_and10_11 = 0;
|
|
uint8_t h_u_arrmul16_fa10_11_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa10_11_or0 = 0;
|
|
uint8_t h_u_arrmul16_and11_11 = 0;
|
|
uint8_t h_u_arrmul16_fa11_11_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa11_11_or0 = 0;
|
|
uint8_t h_u_arrmul16_and12_11 = 0;
|
|
uint8_t h_u_arrmul16_fa12_11_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa12_11_or0 = 0;
|
|
uint8_t h_u_arrmul16_and13_11 = 0;
|
|
uint8_t h_u_arrmul16_fa13_11_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa13_11_or0 = 0;
|
|
uint8_t h_u_arrmul16_and14_11 = 0;
|
|
uint8_t h_u_arrmul16_fa14_11_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa14_11_or0 = 0;
|
|
uint8_t h_u_arrmul16_and15_11 = 0;
|
|
uint8_t h_u_arrmul16_fa15_11_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa15_11_or0 = 0;
|
|
uint8_t h_u_arrmul16_and0_12 = 0;
|
|
uint8_t h_u_arrmul16_ha0_12_xor0 = 0;
|
|
uint8_t h_u_arrmul16_ha0_12_and0 = 0;
|
|
uint8_t h_u_arrmul16_and1_12 = 0;
|
|
uint8_t h_u_arrmul16_fa1_12_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa1_12_or0 = 0;
|
|
uint8_t h_u_arrmul16_and2_12 = 0;
|
|
uint8_t h_u_arrmul16_fa2_12_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa2_12_or0 = 0;
|
|
uint8_t h_u_arrmul16_and3_12 = 0;
|
|
uint8_t h_u_arrmul16_fa3_12_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa3_12_or0 = 0;
|
|
uint8_t h_u_arrmul16_and4_12 = 0;
|
|
uint8_t h_u_arrmul16_fa4_12_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa4_12_or0 = 0;
|
|
uint8_t h_u_arrmul16_and5_12 = 0;
|
|
uint8_t h_u_arrmul16_fa5_12_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa5_12_or0 = 0;
|
|
uint8_t h_u_arrmul16_and6_12 = 0;
|
|
uint8_t h_u_arrmul16_fa6_12_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa6_12_or0 = 0;
|
|
uint8_t h_u_arrmul16_and7_12 = 0;
|
|
uint8_t h_u_arrmul16_fa7_12_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa7_12_or0 = 0;
|
|
uint8_t h_u_arrmul16_and8_12 = 0;
|
|
uint8_t h_u_arrmul16_fa8_12_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa8_12_or0 = 0;
|
|
uint8_t h_u_arrmul16_and9_12 = 0;
|
|
uint8_t h_u_arrmul16_fa9_12_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa9_12_or0 = 0;
|
|
uint8_t h_u_arrmul16_and10_12 = 0;
|
|
uint8_t h_u_arrmul16_fa10_12_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa10_12_or0 = 0;
|
|
uint8_t h_u_arrmul16_and11_12 = 0;
|
|
uint8_t h_u_arrmul16_fa11_12_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa11_12_or0 = 0;
|
|
uint8_t h_u_arrmul16_and12_12 = 0;
|
|
uint8_t h_u_arrmul16_fa12_12_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa12_12_or0 = 0;
|
|
uint8_t h_u_arrmul16_and13_12 = 0;
|
|
uint8_t h_u_arrmul16_fa13_12_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa13_12_or0 = 0;
|
|
uint8_t h_u_arrmul16_and14_12 = 0;
|
|
uint8_t h_u_arrmul16_fa14_12_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa14_12_or0 = 0;
|
|
uint8_t h_u_arrmul16_and15_12 = 0;
|
|
uint8_t h_u_arrmul16_fa15_12_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa15_12_or0 = 0;
|
|
uint8_t h_u_arrmul16_and0_13 = 0;
|
|
uint8_t h_u_arrmul16_ha0_13_xor0 = 0;
|
|
uint8_t h_u_arrmul16_ha0_13_and0 = 0;
|
|
uint8_t h_u_arrmul16_and1_13 = 0;
|
|
uint8_t h_u_arrmul16_fa1_13_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa1_13_or0 = 0;
|
|
uint8_t h_u_arrmul16_and2_13 = 0;
|
|
uint8_t h_u_arrmul16_fa2_13_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa2_13_or0 = 0;
|
|
uint8_t h_u_arrmul16_and3_13 = 0;
|
|
uint8_t h_u_arrmul16_fa3_13_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa3_13_or0 = 0;
|
|
uint8_t h_u_arrmul16_and4_13 = 0;
|
|
uint8_t h_u_arrmul16_fa4_13_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa4_13_or0 = 0;
|
|
uint8_t h_u_arrmul16_and5_13 = 0;
|
|
uint8_t h_u_arrmul16_fa5_13_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa5_13_or0 = 0;
|
|
uint8_t h_u_arrmul16_and6_13 = 0;
|
|
uint8_t h_u_arrmul16_fa6_13_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa6_13_or0 = 0;
|
|
uint8_t h_u_arrmul16_and7_13 = 0;
|
|
uint8_t h_u_arrmul16_fa7_13_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa7_13_or0 = 0;
|
|
uint8_t h_u_arrmul16_and8_13 = 0;
|
|
uint8_t h_u_arrmul16_fa8_13_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa8_13_or0 = 0;
|
|
uint8_t h_u_arrmul16_and9_13 = 0;
|
|
uint8_t h_u_arrmul16_fa9_13_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa9_13_or0 = 0;
|
|
uint8_t h_u_arrmul16_and10_13 = 0;
|
|
uint8_t h_u_arrmul16_fa10_13_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa10_13_or0 = 0;
|
|
uint8_t h_u_arrmul16_and11_13 = 0;
|
|
uint8_t h_u_arrmul16_fa11_13_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa11_13_or0 = 0;
|
|
uint8_t h_u_arrmul16_and12_13 = 0;
|
|
uint8_t h_u_arrmul16_fa12_13_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa12_13_or0 = 0;
|
|
uint8_t h_u_arrmul16_and13_13 = 0;
|
|
uint8_t h_u_arrmul16_fa13_13_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa13_13_or0 = 0;
|
|
uint8_t h_u_arrmul16_and14_13 = 0;
|
|
uint8_t h_u_arrmul16_fa14_13_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa14_13_or0 = 0;
|
|
uint8_t h_u_arrmul16_and15_13 = 0;
|
|
uint8_t h_u_arrmul16_fa15_13_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa15_13_or0 = 0;
|
|
uint8_t h_u_arrmul16_and0_14 = 0;
|
|
uint8_t h_u_arrmul16_ha0_14_xor0 = 0;
|
|
uint8_t h_u_arrmul16_ha0_14_and0 = 0;
|
|
uint8_t h_u_arrmul16_and1_14 = 0;
|
|
uint8_t h_u_arrmul16_fa1_14_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa1_14_or0 = 0;
|
|
uint8_t h_u_arrmul16_and2_14 = 0;
|
|
uint8_t h_u_arrmul16_fa2_14_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa2_14_or0 = 0;
|
|
uint8_t h_u_arrmul16_and3_14 = 0;
|
|
uint8_t h_u_arrmul16_fa3_14_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa3_14_or0 = 0;
|
|
uint8_t h_u_arrmul16_and4_14 = 0;
|
|
uint8_t h_u_arrmul16_fa4_14_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa4_14_or0 = 0;
|
|
uint8_t h_u_arrmul16_and5_14 = 0;
|
|
uint8_t h_u_arrmul16_fa5_14_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa5_14_or0 = 0;
|
|
uint8_t h_u_arrmul16_and6_14 = 0;
|
|
uint8_t h_u_arrmul16_fa6_14_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa6_14_or0 = 0;
|
|
uint8_t h_u_arrmul16_and7_14 = 0;
|
|
uint8_t h_u_arrmul16_fa7_14_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa7_14_or0 = 0;
|
|
uint8_t h_u_arrmul16_and8_14 = 0;
|
|
uint8_t h_u_arrmul16_fa8_14_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa8_14_or0 = 0;
|
|
uint8_t h_u_arrmul16_and9_14 = 0;
|
|
uint8_t h_u_arrmul16_fa9_14_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa9_14_or0 = 0;
|
|
uint8_t h_u_arrmul16_and10_14 = 0;
|
|
uint8_t h_u_arrmul16_fa10_14_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa10_14_or0 = 0;
|
|
uint8_t h_u_arrmul16_and11_14 = 0;
|
|
uint8_t h_u_arrmul16_fa11_14_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa11_14_or0 = 0;
|
|
uint8_t h_u_arrmul16_and12_14 = 0;
|
|
uint8_t h_u_arrmul16_fa12_14_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa12_14_or0 = 0;
|
|
uint8_t h_u_arrmul16_and13_14 = 0;
|
|
uint8_t h_u_arrmul16_fa13_14_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa13_14_or0 = 0;
|
|
uint8_t h_u_arrmul16_and14_14 = 0;
|
|
uint8_t h_u_arrmul16_fa14_14_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa14_14_or0 = 0;
|
|
uint8_t h_u_arrmul16_and15_14 = 0;
|
|
uint8_t h_u_arrmul16_fa15_14_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa15_14_or0 = 0;
|
|
uint8_t h_u_arrmul16_and0_15 = 0;
|
|
uint8_t h_u_arrmul16_ha0_15_xor0 = 0;
|
|
uint8_t h_u_arrmul16_ha0_15_and0 = 0;
|
|
uint8_t h_u_arrmul16_and1_15 = 0;
|
|
uint8_t h_u_arrmul16_fa1_15_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa1_15_or0 = 0;
|
|
uint8_t h_u_arrmul16_and2_15 = 0;
|
|
uint8_t h_u_arrmul16_fa2_15_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa2_15_or0 = 0;
|
|
uint8_t h_u_arrmul16_and3_15 = 0;
|
|
uint8_t h_u_arrmul16_fa3_15_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa3_15_or0 = 0;
|
|
uint8_t h_u_arrmul16_and4_15 = 0;
|
|
uint8_t h_u_arrmul16_fa4_15_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa4_15_or0 = 0;
|
|
uint8_t h_u_arrmul16_and5_15 = 0;
|
|
uint8_t h_u_arrmul16_fa5_15_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa5_15_or0 = 0;
|
|
uint8_t h_u_arrmul16_and6_15 = 0;
|
|
uint8_t h_u_arrmul16_fa6_15_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa6_15_or0 = 0;
|
|
uint8_t h_u_arrmul16_and7_15 = 0;
|
|
uint8_t h_u_arrmul16_fa7_15_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa7_15_or0 = 0;
|
|
uint8_t h_u_arrmul16_and8_15 = 0;
|
|
uint8_t h_u_arrmul16_fa8_15_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa8_15_or0 = 0;
|
|
uint8_t h_u_arrmul16_and9_15 = 0;
|
|
uint8_t h_u_arrmul16_fa9_15_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa9_15_or0 = 0;
|
|
uint8_t h_u_arrmul16_and10_15 = 0;
|
|
uint8_t h_u_arrmul16_fa10_15_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa10_15_or0 = 0;
|
|
uint8_t h_u_arrmul16_and11_15 = 0;
|
|
uint8_t h_u_arrmul16_fa11_15_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa11_15_or0 = 0;
|
|
uint8_t h_u_arrmul16_and12_15 = 0;
|
|
uint8_t h_u_arrmul16_fa12_15_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa12_15_or0 = 0;
|
|
uint8_t h_u_arrmul16_and13_15 = 0;
|
|
uint8_t h_u_arrmul16_fa13_15_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa13_15_or0 = 0;
|
|
uint8_t h_u_arrmul16_and14_15 = 0;
|
|
uint8_t h_u_arrmul16_fa14_15_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa14_15_or0 = 0;
|
|
uint8_t h_u_arrmul16_and15_15 = 0;
|
|
uint8_t h_u_arrmul16_fa15_15_xor1 = 0;
|
|
uint8_t h_u_arrmul16_fa15_15_or0 = 0;
|
|
|
|
h_u_arrmul16_and0_0 = and_gate(((a >> 0) & 0x01), ((b >> 0) & 0x01));
|
|
h_u_arrmul16_and1_0 = and_gate(((a >> 1) & 0x01), ((b >> 0) & 0x01));
|
|
h_u_arrmul16_and2_0 = and_gate(((a >> 2) & 0x01), ((b >> 0) & 0x01));
|
|
h_u_arrmul16_and3_0 = and_gate(((a >> 3) & 0x01), ((b >> 0) & 0x01));
|
|
h_u_arrmul16_and4_0 = and_gate(((a >> 4) & 0x01), ((b >> 0) & 0x01));
|
|
h_u_arrmul16_and5_0 = and_gate(((a >> 5) & 0x01), ((b >> 0) & 0x01));
|
|
h_u_arrmul16_and6_0 = and_gate(((a >> 6) & 0x01), ((b >> 0) & 0x01));
|
|
h_u_arrmul16_and7_0 = and_gate(((a >> 7) & 0x01), ((b >> 0) & 0x01));
|
|
h_u_arrmul16_and8_0 = and_gate(((a >> 8) & 0x01), ((b >> 0) & 0x01));
|
|
h_u_arrmul16_and9_0 = and_gate(((a >> 9) & 0x01), ((b >> 0) & 0x01));
|
|
h_u_arrmul16_and10_0 = and_gate(((a >> 10) & 0x01), ((b >> 0) & 0x01));
|
|
h_u_arrmul16_and11_0 = and_gate(((a >> 11) & 0x01), ((b >> 0) & 0x01));
|
|
h_u_arrmul16_and12_0 = and_gate(((a >> 12) & 0x01), ((b >> 0) & 0x01));
|
|
h_u_arrmul16_and13_0 = and_gate(((a >> 13) & 0x01), ((b >> 0) & 0x01));
|
|
h_u_arrmul16_and14_0 = and_gate(((a >> 14) & 0x01), ((b >> 0) & 0x01));
|
|
h_u_arrmul16_and15_0 = and_gate(((a >> 15) & 0x01), ((b >> 0) & 0x01));
|
|
h_u_arrmul16_and0_1 = and_gate(((a >> 0) & 0x01), ((b >> 1) & 0x01));
|
|
h_u_arrmul16_ha0_1_xor0 = (ha(((h_u_arrmul16_and0_1 >> 0) & 0x01), ((h_u_arrmul16_and1_0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_ha0_1_and0 = (ha(((h_u_arrmul16_and0_1 >> 0) & 0x01), ((h_u_arrmul16_and1_0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and1_1 = and_gate(((a >> 1) & 0x01), ((b >> 1) & 0x01));
|
|
h_u_arrmul16_fa1_1_xor1 = (fa(((h_u_arrmul16_and1_1 >> 0) & 0x01), ((h_u_arrmul16_and2_0 >> 0) & 0x01), ((h_u_arrmul16_ha0_1_and0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa1_1_or0 = (fa(((h_u_arrmul16_and1_1 >> 0) & 0x01), ((h_u_arrmul16_and2_0 >> 0) & 0x01), ((h_u_arrmul16_ha0_1_and0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and2_1 = and_gate(((a >> 2) & 0x01), ((b >> 1) & 0x01));
|
|
h_u_arrmul16_fa2_1_xor1 = (fa(((h_u_arrmul16_and2_1 >> 0) & 0x01), ((h_u_arrmul16_and3_0 >> 0) & 0x01), ((h_u_arrmul16_fa1_1_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa2_1_or0 = (fa(((h_u_arrmul16_and2_1 >> 0) & 0x01), ((h_u_arrmul16_and3_0 >> 0) & 0x01), ((h_u_arrmul16_fa1_1_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and3_1 = and_gate(((a >> 3) & 0x01), ((b >> 1) & 0x01));
|
|
h_u_arrmul16_fa3_1_xor1 = (fa(((h_u_arrmul16_and3_1 >> 0) & 0x01), ((h_u_arrmul16_and4_0 >> 0) & 0x01), ((h_u_arrmul16_fa2_1_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa3_1_or0 = (fa(((h_u_arrmul16_and3_1 >> 0) & 0x01), ((h_u_arrmul16_and4_0 >> 0) & 0x01), ((h_u_arrmul16_fa2_1_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and4_1 = and_gate(((a >> 4) & 0x01), ((b >> 1) & 0x01));
|
|
h_u_arrmul16_fa4_1_xor1 = (fa(((h_u_arrmul16_and4_1 >> 0) & 0x01), ((h_u_arrmul16_and5_0 >> 0) & 0x01), ((h_u_arrmul16_fa3_1_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa4_1_or0 = (fa(((h_u_arrmul16_and4_1 >> 0) & 0x01), ((h_u_arrmul16_and5_0 >> 0) & 0x01), ((h_u_arrmul16_fa3_1_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and5_1 = and_gate(((a >> 5) & 0x01), ((b >> 1) & 0x01));
|
|
h_u_arrmul16_fa5_1_xor1 = (fa(((h_u_arrmul16_and5_1 >> 0) & 0x01), ((h_u_arrmul16_and6_0 >> 0) & 0x01), ((h_u_arrmul16_fa4_1_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa5_1_or0 = (fa(((h_u_arrmul16_and5_1 >> 0) & 0x01), ((h_u_arrmul16_and6_0 >> 0) & 0x01), ((h_u_arrmul16_fa4_1_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and6_1 = and_gate(((a >> 6) & 0x01), ((b >> 1) & 0x01));
|
|
h_u_arrmul16_fa6_1_xor1 = (fa(((h_u_arrmul16_and6_1 >> 0) & 0x01), ((h_u_arrmul16_and7_0 >> 0) & 0x01), ((h_u_arrmul16_fa5_1_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa6_1_or0 = (fa(((h_u_arrmul16_and6_1 >> 0) & 0x01), ((h_u_arrmul16_and7_0 >> 0) & 0x01), ((h_u_arrmul16_fa5_1_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and7_1 = and_gate(((a >> 7) & 0x01), ((b >> 1) & 0x01));
|
|
h_u_arrmul16_fa7_1_xor1 = (fa(((h_u_arrmul16_and7_1 >> 0) & 0x01), ((h_u_arrmul16_and8_0 >> 0) & 0x01), ((h_u_arrmul16_fa6_1_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa7_1_or0 = (fa(((h_u_arrmul16_and7_1 >> 0) & 0x01), ((h_u_arrmul16_and8_0 >> 0) & 0x01), ((h_u_arrmul16_fa6_1_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and8_1 = and_gate(((a >> 8) & 0x01), ((b >> 1) & 0x01));
|
|
h_u_arrmul16_fa8_1_xor1 = (fa(((h_u_arrmul16_and8_1 >> 0) & 0x01), ((h_u_arrmul16_and9_0 >> 0) & 0x01), ((h_u_arrmul16_fa7_1_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa8_1_or0 = (fa(((h_u_arrmul16_and8_1 >> 0) & 0x01), ((h_u_arrmul16_and9_0 >> 0) & 0x01), ((h_u_arrmul16_fa7_1_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and9_1 = and_gate(((a >> 9) & 0x01), ((b >> 1) & 0x01));
|
|
h_u_arrmul16_fa9_1_xor1 = (fa(((h_u_arrmul16_and9_1 >> 0) & 0x01), ((h_u_arrmul16_and10_0 >> 0) & 0x01), ((h_u_arrmul16_fa8_1_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa9_1_or0 = (fa(((h_u_arrmul16_and9_1 >> 0) & 0x01), ((h_u_arrmul16_and10_0 >> 0) & 0x01), ((h_u_arrmul16_fa8_1_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and10_1 = and_gate(((a >> 10) & 0x01), ((b >> 1) & 0x01));
|
|
h_u_arrmul16_fa10_1_xor1 = (fa(((h_u_arrmul16_and10_1 >> 0) & 0x01), ((h_u_arrmul16_and11_0 >> 0) & 0x01), ((h_u_arrmul16_fa9_1_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa10_1_or0 = (fa(((h_u_arrmul16_and10_1 >> 0) & 0x01), ((h_u_arrmul16_and11_0 >> 0) & 0x01), ((h_u_arrmul16_fa9_1_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and11_1 = and_gate(((a >> 11) & 0x01), ((b >> 1) & 0x01));
|
|
h_u_arrmul16_fa11_1_xor1 = (fa(((h_u_arrmul16_and11_1 >> 0) & 0x01), ((h_u_arrmul16_and12_0 >> 0) & 0x01), ((h_u_arrmul16_fa10_1_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa11_1_or0 = (fa(((h_u_arrmul16_and11_1 >> 0) & 0x01), ((h_u_arrmul16_and12_0 >> 0) & 0x01), ((h_u_arrmul16_fa10_1_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and12_1 = and_gate(((a >> 12) & 0x01), ((b >> 1) & 0x01));
|
|
h_u_arrmul16_fa12_1_xor1 = (fa(((h_u_arrmul16_and12_1 >> 0) & 0x01), ((h_u_arrmul16_and13_0 >> 0) & 0x01), ((h_u_arrmul16_fa11_1_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa12_1_or0 = (fa(((h_u_arrmul16_and12_1 >> 0) & 0x01), ((h_u_arrmul16_and13_0 >> 0) & 0x01), ((h_u_arrmul16_fa11_1_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and13_1 = and_gate(((a >> 13) & 0x01), ((b >> 1) & 0x01));
|
|
h_u_arrmul16_fa13_1_xor1 = (fa(((h_u_arrmul16_and13_1 >> 0) & 0x01), ((h_u_arrmul16_and14_0 >> 0) & 0x01), ((h_u_arrmul16_fa12_1_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa13_1_or0 = (fa(((h_u_arrmul16_and13_1 >> 0) & 0x01), ((h_u_arrmul16_and14_0 >> 0) & 0x01), ((h_u_arrmul16_fa12_1_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and14_1 = and_gate(((a >> 14) & 0x01), ((b >> 1) & 0x01));
|
|
h_u_arrmul16_fa14_1_xor1 = (fa(((h_u_arrmul16_and14_1 >> 0) & 0x01), ((h_u_arrmul16_and15_0 >> 0) & 0x01), ((h_u_arrmul16_fa13_1_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa14_1_or0 = (fa(((h_u_arrmul16_and14_1 >> 0) & 0x01), ((h_u_arrmul16_and15_0 >> 0) & 0x01), ((h_u_arrmul16_fa13_1_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and15_1 = and_gate(((a >> 15) & 0x01), ((b >> 1) & 0x01));
|
|
h_u_arrmul16_ha15_1_xor0 = (ha(((h_u_arrmul16_and15_1 >> 0) & 0x01), ((h_u_arrmul16_fa14_1_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_ha15_1_and0 = (ha(((h_u_arrmul16_and15_1 >> 0) & 0x01), ((h_u_arrmul16_fa14_1_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and0_2 = and_gate(((a >> 0) & 0x01), ((b >> 2) & 0x01));
|
|
h_u_arrmul16_ha0_2_xor0 = (ha(((h_u_arrmul16_and0_2 >> 0) & 0x01), ((h_u_arrmul16_fa1_1_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_ha0_2_and0 = (ha(((h_u_arrmul16_and0_2 >> 0) & 0x01), ((h_u_arrmul16_fa1_1_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and1_2 = and_gate(((a >> 1) & 0x01), ((b >> 2) & 0x01));
|
|
h_u_arrmul16_fa1_2_xor1 = (fa(((h_u_arrmul16_and1_2 >> 0) & 0x01), ((h_u_arrmul16_fa2_1_xor1 >> 0) & 0x01), ((h_u_arrmul16_ha0_2_and0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa1_2_or0 = (fa(((h_u_arrmul16_and1_2 >> 0) & 0x01), ((h_u_arrmul16_fa2_1_xor1 >> 0) & 0x01), ((h_u_arrmul16_ha0_2_and0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and2_2 = and_gate(((a >> 2) & 0x01), ((b >> 2) & 0x01));
|
|
h_u_arrmul16_fa2_2_xor1 = (fa(((h_u_arrmul16_and2_2 >> 0) & 0x01), ((h_u_arrmul16_fa3_1_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa1_2_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa2_2_or0 = (fa(((h_u_arrmul16_and2_2 >> 0) & 0x01), ((h_u_arrmul16_fa3_1_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa1_2_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and3_2 = and_gate(((a >> 3) & 0x01), ((b >> 2) & 0x01));
|
|
h_u_arrmul16_fa3_2_xor1 = (fa(((h_u_arrmul16_and3_2 >> 0) & 0x01), ((h_u_arrmul16_fa4_1_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa2_2_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa3_2_or0 = (fa(((h_u_arrmul16_and3_2 >> 0) & 0x01), ((h_u_arrmul16_fa4_1_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa2_2_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and4_2 = and_gate(((a >> 4) & 0x01), ((b >> 2) & 0x01));
|
|
h_u_arrmul16_fa4_2_xor1 = (fa(((h_u_arrmul16_and4_2 >> 0) & 0x01), ((h_u_arrmul16_fa5_1_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa3_2_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa4_2_or0 = (fa(((h_u_arrmul16_and4_2 >> 0) & 0x01), ((h_u_arrmul16_fa5_1_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa3_2_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and5_2 = and_gate(((a >> 5) & 0x01), ((b >> 2) & 0x01));
|
|
h_u_arrmul16_fa5_2_xor1 = (fa(((h_u_arrmul16_and5_2 >> 0) & 0x01), ((h_u_arrmul16_fa6_1_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa4_2_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa5_2_or0 = (fa(((h_u_arrmul16_and5_2 >> 0) & 0x01), ((h_u_arrmul16_fa6_1_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa4_2_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and6_2 = and_gate(((a >> 6) & 0x01), ((b >> 2) & 0x01));
|
|
h_u_arrmul16_fa6_2_xor1 = (fa(((h_u_arrmul16_and6_2 >> 0) & 0x01), ((h_u_arrmul16_fa7_1_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa5_2_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa6_2_or0 = (fa(((h_u_arrmul16_and6_2 >> 0) & 0x01), ((h_u_arrmul16_fa7_1_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa5_2_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and7_2 = and_gate(((a >> 7) & 0x01), ((b >> 2) & 0x01));
|
|
h_u_arrmul16_fa7_2_xor1 = (fa(((h_u_arrmul16_and7_2 >> 0) & 0x01), ((h_u_arrmul16_fa8_1_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa6_2_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa7_2_or0 = (fa(((h_u_arrmul16_and7_2 >> 0) & 0x01), ((h_u_arrmul16_fa8_1_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa6_2_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and8_2 = and_gate(((a >> 8) & 0x01), ((b >> 2) & 0x01));
|
|
h_u_arrmul16_fa8_2_xor1 = (fa(((h_u_arrmul16_and8_2 >> 0) & 0x01), ((h_u_arrmul16_fa9_1_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa7_2_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa8_2_or0 = (fa(((h_u_arrmul16_and8_2 >> 0) & 0x01), ((h_u_arrmul16_fa9_1_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa7_2_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and9_2 = and_gate(((a >> 9) & 0x01), ((b >> 2) & 0x01));
|
|
h_u_arrmul16_fa9_2_xor1 = (fa(((h_u_arrmul16_and9_2 >> 0) & 0x01), ((h_u_arrmul16_fa10_1_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa8_2_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa9_2_or0 = (fa(((h_u_arrmul16_and9_2 >> 0) & 0x01), ((h_u_arrmul16_fa10_1_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa8_2_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and10_2 = and_gate(((a >> 10) & 0x01), ((b >> 2) & 0x01));
|
|
h_u_arrmul16_fa10_2_xor1 = (fa(((h_u_arrmul16_and10_2 >> 0) & 0x01), ((h_u_arrmul16_fa11_1_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa9_2_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa10_2_or0 = (fa(((h_u_arrmul16_and10_2 >> 0) & 0x01), ((h_u_arrmul16_fa11_1_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa9_2_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and11_2 = and_gate(((a >> 11) & 0x01), ((b >> 2) & 0x01));
|
|
h_u_arrmul16_fa11_2_xor1 = (fa(((h_u_arrmul16_and11_2 >> 0) & 0x01), ((h_u_arrmul16_fa12_1_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa10_2_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa11_2_or0 = (fa(((h_u_arrmul16_and11_2 >> 0) & 0x01), ((h_u_arrmul16_fa12_1_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa10_2_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and12_2 = and_gate(((a >> 12) & 0x01), ((b >> 2) & 0x01));
|
|
h_u_arrmul16_fa12_2_xor1 = (fa(((h_u_arrmul16_and12_2 >> 0) & 0x01), ((h_u_arrmul16_fa13_1_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa11_2_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa12_2_or0 = (fa(((h_u_arrmul16_and12_2 >> 0) & 0x01), ((h_u_arrmul16_fa13_1_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa11_2_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and13_2 = and_gate(((a >> 13) & 0x01), ((b >> 2) & 0x01));
|
|
h_u_arrmul16_fa13_2_xor1 = (fa(((h_u_arrmul16_and13_2 >> 0) & 0x01), ((h_u_arrmul16_fa14_1_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa12_2_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa13_2_or0 = (fa(((h_u_arrmul16_and13_2 >> 0) & 0x01), ((h_u_arrmul16_fa14_1_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa12_2_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and14_2 = and_gate(((a >> 14) & 0x01), ((b >> 2) & 0x01));
|
|
h_u_arrmul16_fa14_2_xor1 = (fa(((h_u_arrmul16_and14_2 >> 0) & 0x01), ((h_u_arrmul16_ha15_1_xor0 >> 0) & 0x01), ((h_u_arrmul16_fa13_2_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa14_2_or0 = (fa(((h_u_arrmul16_and14_2 >> 0) & 0x01), ((h_u_arrmul16_ha15_1_xor0 >> 0) & 0x01), ((h_u_arrmul16_fa13_2_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and15_2 = and_gate(((a >> 15) & 0x01), ((b >> 2) & 0x01));
|
|
h_u_arrmul16_fa15_2_xor1 = (fa(((h_u_arrmul16_and15_2 >> 0) & 0x01), ((h_u_arrmul16_ha15_1_and0 >> 0) & 0x01), ((h_u_arrmul16_fa14_2_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa15_2_or0 = (fa(((h_u_arrmul16_and15_2 >> 0) & 0x01), ((h_u_arrmul16_ha15_1_and0 >> 0) & 0x01), ((h_u_arrmul16_fa14_2_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and0_3 = and_gate(((a >> 0) & 0x01), ((b >> 3) & 0x01));
|
|
h_u_arrmul16_ha0_3_xor0 = (ha(((h_u_arrmul16_and0_3 >> 0) & 0x01), ((h_u_arrmul16_fa1_2_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_ha0_3_and0 = (ha(((h_u_arrmul16_and0_3 >> 0) & 0x01), ((h_u_arrmul16_fa1_2_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and1_3 = and_gate(((a >> 1) & 0x01), ((b >> 3) & 0x01));
|
|
h_u_arrmul16_fa1_3_xor1 = (fa(((h_u_arrmul16_and1_3 >> 0) & 0x01), ((h_u_arrmul16_fa2_2_xor1 >> 0) & 0x01), ((h_u_arrmul16_ha0_3_and0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa1_3_or0 = (fa(((h_u_arrmul16_and1_3 >> 0) & 0x01), ((h_u_arrmul16_fa2_2_xor1 >> 0) & 0x01), ((h_u_arrmul16_ha0_3_and0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and2_3 = and_gate(((a >> 2) & 0x01), ((b >> 3) & 0x01));
|
|
h_u_arrmul16_fa2_3_xor1 = (fa(((h_u_arrmul16_and2_3 >> 0) & 0x01), ((h_u_arrmul16_fa3_2_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa1_3_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa2_3_or0 = (fa(((h_u_arrmul16_and2_3 >> 0) & 0x01), ((h_u_arrmul16_fa3_2_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa1_3_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and3_3 = and_gate(((a >> 3) & 0x01), ((b >> 3) & 0x01));
|
|
h_u_arrmul16_fa3_3_xor1 = (fa(((h_u_arrmul16_and3_3 >> 0) & 0x01), ((h_u_arrmul16_fa4_2_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa2_3_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa3_3_or0 = (fa(((h_u_arrmul16_and3_3 >> 0) & 0x01), ((h_u_arrmul16_fa4_2_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa2_3_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and4_3 = and_gate(((a >> 4) & 0x01), ((b >> 3) & 0x01));
|
|
h_u_arrmul16_fa4_3_xor1 = (fa(((h_u_arrmul16_and4_3 >> 0) & 0x01), ((h_u_arrmul16_fa5_2_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa3_3_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa4_3_or0 = (fa(((h_u_arrmul16_and4_3 >> 0) & 0x01), ((h_u_arrmul16_fa5_2_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa3_3_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and5_3 = and_gate(((a >> 5) & 0x01), ((b >> 3) & 0x01));
|
|
h_u_arrmul16_fa5_3_xor1 = (fa(((h_u_arrmul16_and5_3 >> 0) & 0x01), ((h_u_arrmul16_fa6_2_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa4_3_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa5_3_or0 = (fa(((h_u_arrmul16_and5_3 >> 0) & 0x01), ((h_u_arrmul16_fa6_2_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa4_3_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and6_3 = and_gate(((a >> 6) & 0x01), ((b >> 3) & 0x01));
|
|
h_u_arrmul16_fa6_3_xor1 = (fa(((h_u_arrmul16_and6_3 >> 0) & 0x01), ((h_u_arrmul16_fa7_2_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa5_3_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa6_3_or0 = (fa(((h_u_arrmul16_and6_3 >> 0) & 0x01), ((h_u_arrmul16_fa7_2_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa5_3_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and7_3 = and_gate(((a >> 7) & 0x01), ((b >> 3) & 0x01));
|
|
h_u_arrmul16_fa7_3_xor1 = (fa(((h_u_arrmul16_and7_3 >> 0) & 0x01), ((h_u_arrmul16_fa8_2_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa6_3_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa7_3_or0 = (fa(((h_u_arrmul16_and7_3 >> 0) & 0x01), ((h_u_arrmul16_fa8_2_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa6_3_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and8_3 = and_gate(((a >> 8) & 0x01), ((b >> 3) & 0x01));
|
|
h_u_arrmul16_fa8_3_xor1 = (fa(((h_u_arrmul16_and8_3 >> 0) & 0x01), ((h_u_arrmul16_fa9_2_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa7_3_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa8_3_or0 = (fa(((h_u_arrmul16_and8_3 >> 0) & 0x01), ((h_u_arrmul16_fa9_2_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa7_3_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and9_3 = and_gate(((a >> 9) & 0x01), ((b >> 3) & 0x01));
|
|
h_u_arrmul16_fa9_3_xor1 = (fa(((h_u_arrmul16_and9_3 >> 0) & 0x01), ((h_u_arrmul16_fa10_2_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa8_3_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa9_3_or0 = (fa(((h_u_arrmul16_and9_3 >> 0) & 0x01), ((h_u_arrmul16_fa10_2_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa8_3_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and10_3 = and_gate(((a >> 10) & 0x01), ((b >> 3) & 0x01));
|
|
h_u_arrmul16_fa10_3_xor1 = (fa(((h_u_arrmul16_and10_3 >> 0) & 0x01), ((h_u_arrmul16_fa11_2_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa9_3_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa10_3_or0 = (fa(((h_u_arrmul16_and10_3 >> 0) & 0x01), ((h_u_arrmul16_fa11_2_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa9_3_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and11_3 = and_gate(((a >> 11) & 0x01), ((b >> 3) & 0x01));
|
|
h_u_arrmul16_fa11_3_xor1 = (fa(((h_u_arrmul16_and11_3 >> 0) & 0x01), ((h_u_arrmul16_fa12_2_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa10_3_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa11_3_or0 = (fa(((h_u_arrmul16_and11_3 >> 0) & 0x01), ((h_u_arrmul16_fa12_2_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa10_3_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and12_3 = and_gate(((a >> 12) & 0x01), ((b >> 3) & 0x01));
|
|
h_u_arrmul16_fa12_3_xor1 = (fa(((h_u_arrmul16_and12_3 >> 0) & 0x01), ((h_u_arrmul16_fa13_2_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa11_3_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa12_3_or0 = (fa(((h_u_arrmul16_and12_3 >> 0) & 0x01), ((h_u_arrmul16_fa13_2_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa11_3_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and13_3 = and_gate(((a >> 13) & 0x01), ((b >> 3) & 0x01));
|
|
h_u_arrmul16_fa13_3_xor1 = (fa(((h_u_arrmul16_and13_3 >> 0) & 0x01), ((h_u_arrmul16_fa14_2_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa12_3_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa13_3_or0 = (fa(((h_u_arrmul16_and13_3 >> 0) & 0x01), ((h_u_arrmul16_fa14_2_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa12_3_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and14_3 = and_gate(((a >> 14) & 0x01), ((b >> 3) & 0x01));
|
|
h_u_arrmul16_fa14_3_xor1 = (fa(((h_u_arrmul16_and14_3 >> 0) & 0x01), ((h_u_arrmul16_fa15_2_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa13_3_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa14_3_or0 = (fa(((h_u_arrmul16_and14_3 >> 0) & 0x01), ((h_u_arrmul16_fa15_2_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa13_3_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and15_3 = and_gate(((a >> 15) & 0x01), ((b >> 3) & 0x01));
|
|
h_u_arrmul16_fa15_3_xor1 = (fa(((h_u_arrmul16_and15_3 >> 0) & 0x01), ((h_u_arrmul16_fa15_2_or0 >> 0) & 0x01), ((h_u_arrmul16_fa14_3_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa15_3_or0 = (fa(((h_u_arrmul16_and15_3 >> 0) & 0x01), ((h_u_arrmul16_fa15_2_or0 >> 0) & 0x01), ((h_u_arrmul16_fa14_3_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and0_4 = and_gate(((a >> 0) & 0x01), ((b >> 4) & 0x01));
|
|
h_u_arrmul16_ha0_4_xor0 = (ha(((h_u_arrmul16_and0_4 >> 0) & 0x01), ((h_u_arrmul16_fa1_3_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_ha0_4_and0 = (ha(((h_u_arrmul16_and0_4 >> 0) & 0x01), ((h_u_arrmul16_fa1_3_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and1_4 = and_gate(((a >> 1) & 0x01), ((b >> 4) & 0x01));
|
|
h_u_arrmul16_fa1_4_xor1 = (fa(((h_u_arrmul16_and1_4 >> 0) & 0x01), ((h_u_arrmul16_fa2_3_xor1 >> 0) & 0x01), ((h_u_arrmul16_ha0_4_and0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa1_4_or0 = (fa(((h_u_arrmul16_and1_4 >> 0) & 0x01), ((h_u_arrmul16_fa2_3_xor1 >> 0) & 0x01), ((h_u_arrmul16_ha0_4_and0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and2_4 = and_gate(((a >> 2) & 0x01), ((b >> 4) & 0x01));
|
|
h_u_arrmul16_fa2_4_xor1 = (fa(((h_u_arrmul16_and2_4 >> 0) & 0x01), ((h_u_arrmul16_fa3_3_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa1_4_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa2_4_or0 = (fa(((h_u_arrmul16_and2_4 >> 0) & 0x01), ((h_u_arrmul16_fa3_3_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa1_4_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and3_4 = and_gate(((a >> 3) & 0x01), ((b >> 4) & 0x01));
|
|
h_u_arrmul16_fa3_4_xor1 = (fa(((h_u_arrmul16_and3_4 >> 0) & 0x01), ((h_u_arrmul16_fa4_3_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa2_4_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa3_4_or0 = (fa(((h_u_arrmul16_and3_4 >> 0) & 0x01), ((h_u_arrmul16_fa4_3_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa2_4_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and4_4 = and_gate(((a >> 4) & 0x01), ((b >> 4) & 0x01));
|
|
h_u_arrmul16_fa4_4_xor1 = (fa(((h_u_arrmul16_and4_4 >> 0) & 0x01), ((h_u_arrmul16_fa5_3_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa3_4_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa4_4_or0 = (fa(((h_u_arrmul16_and4_4 >> 0) & 0x01), ((h_u_arrmul16_fa5_3_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa3_4_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and5_4 = and_gate(((a >> 5) & 0x01), ((b >> 4) & 0x01));
|
|
h_u_arrmul16_fa5_4_xor1 = (fa(((h_u_arrmul16_and5_4 >> 0) & 0x01), ((h_u_arrmul16_fa6_3_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa4_4_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa5_4_or0 = (fa(((h_u_arrmul16_and5_4 >> 0) & 0x01), ((h_u_arrmul16_fa6_3_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa4_4_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and6_4 = and_gate(((a >> 6) & 0x01), ((b >> 4) & 0x01));
|
|
h_u_arrmul16_fa6_4_xor1 = (fa(((h_u_arrmul16_and6_4 >> 0) & 0x01), ((h_u_arrmul16_fa7_3_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa5_4_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa6_4_or0 = (fa(((h_u_arrmul16_and6_4 >> 0) & 0x01), ((h_u_arrmul16_fa7_3_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa5_4_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and7_4 = and_gate(((a >> 7) & 0x01), ((b >> 4) & 0x01));
|
|
h_u_arrmul16_fa7_4_xor1 = (fa(((h_u_arrmul16_and7_4 >> 0) & 0x01), ((h_u_arrmul16_fa8_3_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa6_4_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa7_4_or0 = (fa(((h_u_arrmul16_and7_4 >> 0) & 0x01), ((h_u_arrmul16_fa8_3_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa6_4_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and8_4 = and_gate(((a >> 8) & 0x01), ((b >> 4) & 0x01));
|
|
h_u_arrmul16_fa8_4_xor1 = (fa(((h_u_arrmul16_and8_4 >> 0) & 0x01), ((h_u_arrmul16_fa9_3_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa7_4_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa8_4_or0 = (fa(((h_u_arrmul16_and8_4 >> 0) & 0x01), ((h_u_arrmul16_fa9_3_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa7_4_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and9_4 = and_gate(((a >> 9) & 0x01), ((b >> 4) & 0x01));
|
|
h_u_arrmul16_fa9_4_xor1 = (fa(((h_u_arrmul16_and9_4 >> 0) & 0x01), ((h_u_arrmul16_fa10_3_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa8_4_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa9_4_or0 = (fa(((h_u_arrmul16_and9_4 >> 0) & 0x01), ((h_u_arrmul16_fa10_3_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa8_4_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and10_4 = and_gate(((a >> 10) & 0x01), ((b >> 4) & 0x01));
|
|
h_u_arrmul16_fa10_4_xor1 = (fa(((h_u_arrmul16_and10_4 >> 0) & 0x01), ((h_u_arrmul16_fa11_3_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa9_4_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa10_4_or0 = (fa(((h_u_arrmul16_and10_4 >> 0) & 0x01), ((h_u_arrmul16_fa11_3_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa9_4_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and11_4 = and_gate(((a >> 11) & 0x01), ((b >> 4) & 0x01));
|
|
h_u_arrmul16_fa11_4_xor1 = (fa(((h_u_arrmul16_and11_4 >> 0) & 0x01), ((h_u_arrmul16_fa12_3_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa10_4_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa11_4_or0 = (fa(((h_u_arrmul16_and11_4 >> 0) & 0x01), ((h_u_arrmul16_fa12_3_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa10_4_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and12_4 = and_gate(((a >> 12) & 0x01), ((b >> 4) & 0x01));
|
|
h_u_arrmul16_fa12_4_xor1 = (fa(((h_u_arrmul16_and12_4 >> 0) & 0x01), ((h_u_arrmul16_fa13_3_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa11_4_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa12_4_or0 = (fa(((h_u_arrmul16_and12_4 >> 0) & 0x01), ((h_u_arrmul16_fa13_3_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa11_4_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and13_4 = and_gate(((a >> 13) & 0x01), ((b >> 4) & 0x01));
|
|
h_u_arrmul16_fa13_4_xor1 = (fa(((h_u_arrmul16_and13_4 >> 0) & 0x01), ((h_u_arrmul16_fa14_3_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa12_4_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa13_4_or0 = (fa(((h_u_arrmul16_and13_4 >> 0) & 0x01), ((h_u_arrmul16_fa14_3_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa12_4_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and14_4 = and_gate(((a >> 14) & 0x01), ((b >> 4) & 0x01));
|
|
h_u_arrmul16_fa14_4_xor1 = (fa(((h_u_arrmul16_and14_4 >> 0) & 0x01), ((h_u_arrmul16_fa15_3_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa13_4_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa14_4_or0 = (fa(((h_u_arrmul16_and14_4 >> 0) & 0x01), ((h_u_arrmul16_fa15_3_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa13_4_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and15_4 = and_gate(((a >> 15) & 0x01), ((b >> 4) & 0x01));
|
|
h_u_arrmul16_fa15_4_xor1 = (fa(((h_u_arrmul16_and15_4 >> 0) & 0x01), ((h_u_arrmul16_fa15_3_or0 >> 0) & 0x01), ((h_u_arrmul16_fa14_4_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa15_4_or0 = (fa(((h_u_arrmul16_and15_4 >> 0) & 0x01), ((h_u_arrmul16_fa15_3_or0 >> 0) & 0x01), ((h_u_arrmul16_fa14_4_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and0_5 = and_gate(((a >> 0) & 0x01), ((b >> 5) & 0x01));
|
|
h_u_arrmul16_ha0_5_xor0 = (ha(((h_u_arrmul16_and0_5 >> 0) & 0x01), ((h_u_arrmul16_fa1_4_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_ha0_5_and0 = (ha(((h_u_arrmul16_and0_5 >> 0) & 0x01), ((h_u_arrmul16_fa1_4_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and1_5 = and_gate(((a >> 1) & 0x01), ((b >> 5) & 0x01));
|
|
h_u_arrmul16_fa1_5_xor1 = (fa(((h_u_arrmul16_and1_5 >> 0) & 0x01), ((h_u_arrmul16_fa2_4_xor1 >> 0) & 0x01), ((h_u_arrmul16_ha0_5_and0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa1_5_or0 = (fa(((h_u_arrmul16_and1_5 >> 0) & 0x01), ((h_u_arrmul16_fa2_4_xor1 >> 0) & 0x01), ((h_u_arrmul16_ha0_5_and0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and2_5 = and_gate(((a >> 2) & 0x01), ((b >> 5) & 0x01));
|
|
h_u_arrmul16_fa2_5_xor1 = (fa(((h_u_arrmul16_and2_5 >> 0) & 0x01), ((h_u_arrmul16_fa3_4_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa1_5_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa2_5_or0 = (fa(((h_u_arrmul16_and2_5 >> 0) & 0x01), ((h_u_arrmul16_fa3_4_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa1_5_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and3_5 = and_gate(((a >> 3) & 0x01), ((b >> 5) & 0x01));
|
|
h_u_arrmul16_fa3_5_xor1 = (fa(((h_u_arrmul16_and3_5 >> 0) & 0x01), ((h_u_arrmul16_fa4_4_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa2_5_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa3_5_or0 = (fa(((h_u_arrmul16_and3_5 >> 0) & 0x01), ((h_u_arrmul16_fa4_4_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa2_5_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and4_5 = and_gate(((a >> 4) & 0x01), ((b >> 5) & 0x01));
|
|
h_u_arrmul16_fa4_5_xor1 = (fa(((h_u_arrmul16_and4_5 >> 0) & 0x01), ((h_u_arrmul16_fa5_4_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa3_5_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa4_5_or0 = (fa(((h_u_arrmul16_and4_5 >> 0) & 0x01), ((h_u_arrmul16_fa5_4_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa3_5_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and5_5 = and_gate(((a >> 5) & 0x01), ((b >> 5) & 0x01));
|
|
h_u_arrmul16_fa5_5_xor1 = (fa(((h_u_arrmul16_and5_5 >> 0) & 0x01), ((h_u_arrmul16_fa6_4_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa4_5_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa5_5_or0 = (fa(((h_u_arrmul16_and5_5 >> 0) & 0x01), ((h_u_arrmul16_fa6_4_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa4_5_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and6_5 = and_gate(((a >> 6) & 0x01), ((b >> 5) & 0x01));
|
|
h_u_arrmul16_fa6_5_xor1 = (fa(((h_u_arrmul16_and6_5 >> 0) & 0x01), ((h_u_arrmul16_fa7_4_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa5_5_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa6_5_or0 = (fa(((h_u_arrmul16_and6_5 >> 0) & 0x01), ((h_u_arrmul16_fa7_4_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa5_5_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and7_5 = and_gate(((a >> 7) & 0x01), ((b >> 5) & 0x01));
|
|
h_u_arrmul16_fa7_5_xor1 = (fa(((h_u_arrmul16_and7_5 >> 0) & 0x01), ((h_u_arrmul16_fa8_4_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa6_5_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa7_5_or0 = (fa(((h_u_arrmul16_and7_5 >> 0) & 0x01), ((h_u_arrmul16_fa8_4_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa6_5_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and8_5 = and_gate(((a >> 8) & 0x01), ((b >> 5) & 0x01));
|
|
h_u_arrmul16_fa8_5_xor1 = (fa(((h_u_arrmul16_and8_5 >> 0) & 0x01), ((h_u_arrmul16_fa9_4_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa7_5_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa8_5_or0 = (fa(((h_u_arrmul16_and8_5 >> 0) & 0x01), ((h_u_arrmul16_fa9_4_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa7_5_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and9_5 = and_gate(((a >> 9) & 0x01), ((b >> 5) & 0x01));
|
|
h_u_arrmul16_fa9_5_xor1 = (fa(((h_u_arrmul16_and9_5 >> 0) & 0x01), ((h_u_arrmul16_fa10_4_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa8_5_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa9_5_or0 = (fa(((h_u_arrmul16_and9_5 >> 0) & 0x01), ((h_u_arrmul16_fa10_4_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa8_5_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and10_5 = and_gate(((a >> 10) & 0x01), ((b >> 5) & 0x01));
|
|
h_u_arrmul16_fa10_5_xor1 = (fa(((h_u_arrmul16_and10_5 >> 0) & 0x01), ((h_u_arrmul16_fa11_4_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa9_5_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa10_5_or0 = (fa(((h_u_arrmul16_and10_5 >> 0) & 0x01), ((h_u_arrmul16_fa11_4_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa9_5_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and11_5 = and_gate(((a >> 11) & 0x01), ((b >> 5) & 0x01));
|
|
h_u_arrmul16_fa11_5_xor1 = (fa(((h_u_arrmul16_and11_5 >> 0) & 0x01), ((h_u_arrmul16_fa12_4_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa10_5_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa11_5_or0 = (fa(((h_u_arrmul16_and11_5 >> 0) & 0x01), ((h_u_arrmul16_fa12_4_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa10_5_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and12_5 = and_gate(((a >> 12) & 0x01), ((b >> 5) & 0x01));
|
|
h_u_arrmul16_fa12_5_xor1 = (fa(((h_u_arrmul16_and12_5 >> 0) & 0x01), ((h_u_arrmul16_fa13_4_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa11_5_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa12_5_or0 = (fa(((h_u_arrmul16_and12_5 >> 0) & 0x01), ((h_u_arrmul16_fa13_4_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa11_5_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and13_5 = and_gate(((a >> 13) & 0x01), ((b >> 5) & 0x01));
|
|
h_u_arrmul16_fa13_5_xor1 = (fa(((h_u_arrmul16_and13_5 >> 0) & 0x01), ((h_u_arrmul16_fa14_4_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa12_5_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa13_5_or0 = (fa(((h_u_arrmul16_and13_5 >> 0) & 0x01), ((h_u_arrmul16_fa14_4_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa12_5_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and14_5 = and_gate(((a >> 14) & 0x01), ((b >> 5) & 0x01));
|
|
h_u_arrmul16_fa14_5_xor1 = (fa(((h_u_arrmul16_and14_5 >> 0) & 0x01), ((h_u_arrmul16_fa15_4_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa13_5_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa14_5_or0 = (fa(((h_u_arrmul16_and14_5 >> 0) & 0x01), ((h_u_arrmul16_fa15_4_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa13_5_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and15_5 = and_gate(((a >> 15) & 0x01), ((b >> 5) & 0x01));
|
|
h_u_arrmul16_fa15_5_xor1 = (fa(((h_u_arrmul16_and15_5 >> 0) & 0x01), ((h_u_arrmul16_fa15_4_or0 >> 0) & 0x01), ((h_u_arrmul16_fa14_5_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa15_5_or0 = (fa(((h_u_arrmul16_and15_5 >> 0) & 0x01), ((h_u_arrmul16_fa15_4_or0 >> 0) & 0x01), ((h_u_arrmul16_fa14_5_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and0_6 = and_gate(((a >> 0) & 0x01), ((b >> 6) & 0x01));
|
|
h_u_arrmul16_ha0_6_xor0 = (ha(((h_u_arrmul16_and0_6 >> 0) & 0x01), ((h_u_arrmul16_fa1_5_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_ha0_6_and0 = (ha(((h_u_arrmul16_and0_6 >> 0) & 0x01), ((h_u_arrmul16_fa1_5_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and1_6 = and_gate(((a >> 1) & 0x01), ((b >> 6) & 0x01));
|
|
h_u_arrmul16_fa1_6_xor1 = (fa(((h_u_arrmul16_and1_6 >> 0) & 0x01), ((h_u_arrmul16_fa2_5_xor1 >> 0) & 0x01), ((h_u_arrmul16_ha0_6_and0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa1_6_or0 = (fa(((h_u_arrmul16_and1_6 >> 0) & 0x01), ((h_u_arrmul16_fa2_5_xor1 >> 0) & 0x01), ((h_u_arrmul16_ha0_6_and0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and2_6 = and_gate(((a >> 2) & 0x01), ((b >> 6) & 0x01));
|
|
h_u_arrmul16_fa2_6_xor1 = (fa(((h_u_arrmul16_and2_6 >> 0) & 0x01), ((h_u_arrmul16_fa3_5_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa1_6_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa2_6_or0 = (fa(((h_u_arrmul16_and2_6 >> 0) & 0x01), ((h_u_arrmul16_fa3_5_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa1_6_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and3_6 = and_gate(((a >> 3) & 0x01), ((b >> 6) & 0x01));
|
|
h_u_arrmul16_fa3_6_xor1 = (fa(((h_u_arrmul16_and3_6 >> 0) & 0x01), ((h_u_arrmul16_fa4_5_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa2_6_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa3_6_or0 = (fa(((h_u_arrmul16_and3_6 >> 0) & 0x01), ((h_u_arrmul16_fa4_5_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa2_6_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and4_6 = and_gate(((a >> 4) & 0x01), ((b >> 6) & 0x01));
|
|
h_u_arrmul16_fa4_6_xor1 = (fa(((h_u_arrmul16_and4_6 >> 0) & 0x01), ((h_u_arrmul16_fa5_5_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa3_6_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa4_6_or0 = (fa(((h_u_arrmul16_and4_6 >> 0) & 0x01), ((h_u_arrmul16_fa5_5_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa3_6_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and5_6 = and_gate(((a >> 5) & 0x01), ((b >> 6) & 0x01));
|
|
h_u_arrmul16_fa5_6_xor1 = (fa(((h_u_arrmul16_and5_6 >> 0) & 0x01), ((h_u_arrmul16_fa6_5_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa4_6_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa5_6_or0 = (fa(((h_u_arrmul16_and5_6 >> 0) & 0x01), ((h_u_arrmul16_fa6_5_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa4_6_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and6_6 = and_gate(((a >> 6) & 0x01), ((b >> 6) & 0x01));
|
|
h_u_arrmul16_fa6_6_xor1 = (fa(((h_u_arrmul16_and6_6 >> 0) & 0x01), ((h_u_arrmul16_fa7_5_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa5_6_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa6_6_or0 = (fa(((h_u_arrmul16_and6_6 >> 0) & 0x01), ((h_u_arrmul16_fa7_5_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa5_6_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and7_6 = and_gate(((a >> 7) & 0x01), ((b >> 6) & 0x01));
|
|
h_u_arrmul16_fa7_6_xor1 = (fa(((h_u_arrmul16_and7_6 >> 0) & 0x01), ((h_u_arrmul16_fa8_5_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa6_6_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa7_6_or0 = (fa(((h_u_arrmul16_and7_6 >> 0) & 0x01), ((h_u_arrmul16_fa8_5_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa6_6_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and8_6 = and_gate(((a >> 8) & 0x01), ((b >> 6) & 0x01));
|
|
h_u_arrmul16_fa8_6_xor1 = (fa(((h_u_arrmul16_and8_6 >> 0) & 0x01), ((h_u_arrmul16_fa9_5_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa7_6_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa8_6_or0 = (fa(((h_u_arrmul16_and8_6 >> 0) & 0x01), ((h_u_arrmul16_fa9_5_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa7_6_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and9_6 = and_gate(((a >> 9) & 0x01), ((b >> 6) & 0x01));
|
|
h_u_arrmul16_fa9_6_xor1 = (fa(((h_u_arrmul16_and9_6 >> 0) & 0x01), ((h_u_arrmul16_fa10_5_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa8_6_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa9_6_or0 = (fa(((h_u_arrmul16_and9_6 >> 0) & 0x01), ((h_u_arrmul16_fa10_5_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa8_6_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and10_6 = and_gate(((a >> 10) & 0x01), ((b >> 6) & 0x01));
|
|
h_u_arrmul16_fa10_6_xor1 = (fa(((h_u_arrmul16_and10_6 >> 0) & 0x01), ((h_u_arrmul16_fa11_5_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa9_6_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa10_6_or0 = (fa(((h_u_arrmul16_and10_6 >> 0) & 0x01), ((h_u_arrmul16_fa11_5_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa9_6_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and11_6 = and_gate(((a >> 11) & 0x01), ((b >> 6) & 0x01));
|
|
h_u_arrmul16_fa11_6_xor1 = (fa(((h_u_arrmul16_and11_6 >> 0) & 0x01), ((h_u_arrmul16_fa12_5_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa10_6_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa11_6_or0 = (fa(((h_u_arrmul16_and11_6 >> 0) & 0x01), ((h_u_arrmul16_fa12_5_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa10_6_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and12_6 = and_gate(((a >> 12) & 0x01), ((b >> 6) & 0x01));
|
|
h_u_arrmul16_fa12_6_xor1 = (fa(((h_u_arrmul16_and12_6 >> 0) & 0x01), ((h_u_arrmul16_fa13_5_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa11_6_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa12_6_or0 = (fa(((h_u_arrmul16_and12_6 >> 0) & 0x01), ((h_u_arrmul16_fa13_5_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa11_6_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and13_6 = and_gate(((a >> 13) & 0x01), ((b >> 6) & 0x01));
|
|
h_u_arrmul16_fa13_6_xor1 = (fa(((h_u_arrmul16_and13_6 >> 0) & 0x01), ((h_u_arrmul16_fa14_5_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa12_6_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa13_6_or0 = (fa(((h_u_arrmul16_and13_6 >> 0) & 0x01), ((h_u_arrmul16_fa14_5_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa12_6_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and14_6 = and_gate(((a >> 14) & 0x01), ((b >> 6) & 0x01));
|
|
h_u_arrmul16_fa14_6_xor1 = (fa(((h_u_arrmul16_and14_6 >> 0) & 0x01), ((h_u_arrmul16_fa15_5_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa13_6_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa14_6_or0 = (fa(((h_u_arrmul16_and14_6 >> 0) & 0x01), ((h_u_arrmul16_fa15_5_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa13_6_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and15_6 = and_gate(((a >> 15) & 0x01), ((b >> 6) & 0x01));
|
|
h_u_arrmul16_fa15_6_xor1 = (fa(((h_u_arrmul16_and15_6 >> 0) & 0x01), ((h_u_arrmul16_fa15_5_or0 >> 0) & 0x01), ((h_u_arrmul16_fa14_6_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa15_6_or0 = (fa(((h_u_arrmul16_and15_6 >> 0) & 0x01), ((h_u_arrmul16_fa15_5_or0 >> 0) & 0x01), ((h_u_arrmul16_fa14_6_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and0_7 = and_gate(((a >> 0) & 0x01), ((b >> 7) & 0x01));
|
|
h_u_arrmul16_ha0_7_xor0 = (ha(((h_u_arrmul16_and0_7 >> 0) & 0x01), ((h_u_arrmul16_fa1_6_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_ha0_7_and0 = (ha(((h_u_arrmul16_and0_7 >> 0) & 0x01), ((h_u_arrmul16_fa1_6_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and1_7 = and_gate(((a >> 1) & 0x01), ((b >> 7) & 0x01));
|
|
h_u_arrmul16_fa1_7_xor1 = (fa(((h_u_arrmul16_and1_7 >> 0) & 0x01), ((h_u_arrmul16_fa2_6_xor1 >> 0) & 0x01), ((h_u_arrmul16_ha0_7_and0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa1_7_or0 = (fa(((h_u_arrmul16_and1_7 >> 0) & 0x01), ((h_u_arrmul16_fa2_6_xor1 >> 0) & 0x01), ((h_u_arrmul16_ha0_7_and0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and2_7 = and_gate(((a >> 2) & 0x01), ((b >> 7) & 0x01));
|
|
h_u_arrmul16_fa2_7_xor1 = (fa(((h_u_arrmul16_and2_7 >> 0) & 0x01), ((h_u_arrmul16_fa3_6_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa1_7_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa2_7_or0 = (fa(((h_u_arrmul16_and2_7 >> 0) & 0x01), ((h_u_arrmul16_fa3_6_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa1_7_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and3_7 = and_gate(((a >> 3) & 0x01), ((b >> 7) & 0x01));
|
|
h_u_arrmul16_fa3_7_xor1 = (fa(((h_u_arrmul16_and3_7 >> 0) & 0x01), ((h_u_arrmul16_fa4_6_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa2_7_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa3_7_or0 = (fa(((h_u_arrmul16_and3_7 >> 0) & 0x01), ((h_u_arrmul16_fa4_6_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa2_7_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and4_7 = and_gate(((a >> 4) & 0x01), ((b >> 7) & 0x01));
|
|
h_u_arrmul16_fa4_7_xor1 = (fa(((h_u_arrmul16_and4_7 >> 0) & 0x01), ((h_u_arrmul16_fa5_6_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa3_7_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa4_7_or0 = (fa(((h_u_arrmul16_and4_7 >> 0) & 0x01), ((h_u_arrmul16_fa5_6_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa3_7_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and5_7 = and_gate(((a >> 5) & 0x01), ((b >> 7) & 0x01));
|
|
h_u_arrmul16_fa5_7_xor1 = (fa(((h_u_arrmul16_and5_7 >> 0) & 0x01), ((h_u_arrmul16_fa6_6_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa4_7_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa5_7_or0 = (fa(((h_u_arrmul16_and5_7 >> 0) & 0x01), ((h_u_arrmul16_fa6_6_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa4_7_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and6_7 = and_gate(((a >> 6) & 0x01), ((b >> 7) & 0x01));
|
|
h_u_arrmul16_fa6_7_xor1 = (fa(((h_u_arrmul16_and6_7 >> 0) & 0x01), ((h_u_arrmul16_fa7_6_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa5_7_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa6_7_or0 = (fa(((h_u_arrmul16_and6_7 >> 0) & 0x01), ((h_u_arrmul16_fa7_6_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa5_7_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and7_7 = and_gate(((a >> 7) & 0x01), ((b >> 7) & 0x01));
|
|
h_u_arrmul16_fa7_7_xor1 = (fa(((h_u_arrmul16_and7_7 >> 0) & 0x01), ((h_u_arrmul16_fa8_6_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa6_7_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa7_7_or0 = (fa(((h_u_arrmul16_and7_7 >> 0) & 0x01), ((h_u_arrmul16_fa8_6_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa6_7_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and8_7 = and_gate(((a >> 8) & 0x01), ((b >> 7) & 0x01));
|
|
h_u_arrmul16_fa8_7_xor1 = (fa(((h_u_arrmul16_and8_7 >> 0) & 0x01), ((h_u_arrmul16_fa9_6_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa7_7_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa8_7_or0 = (fa(((h_u_arrmul16_and8_7 >> 0) & 0x01), ((h_u_arrmul16_fa9_6_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa7_7_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and9_7 = and_gate(((a >> 9) & 0x01), ((b >> 7) & 0x01));
|
|
h_u_arrmul16_fa9_7_xor1 = (fa(((h_u_arrmul16_and9_7 >> 0) & 0x01), ((h_u_arrmul16_fa10_6_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa8_7_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa9_7_or0 = (fa(((h_u_arrmul16_and9_7 >> 0) & 0x01), ((h_u_arrmul16_fa10_6_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa8_7_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and10_7 = and_gate(((a >> 10) & 0x01), ((b >> 7) & 0x01));
|
|
h_u_arrmul16_fa10_7_xor1 = (fa(((h_u_arrmul16_and10_7 >> 0) & 0x01), ((h_u_arrmul16_fa11_6_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa9_7_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa10_7_or0 = (fa(((h_u_arrmul16_and10_7 >> 0) & 0x01), ((h_u_arrmul16_fa11_6_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa9_7_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and11_7 = and_gate(((a >> 11) & 0x01), ((b >> 7) & 0x01));
|
|
h_u_arrmul16_fa11_7_xor1 = (fa(((h_u_arrmul16_and11_7 >> 0) & 0x01), ((h_u_arrmul16_fa12_6_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa10_7_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa11_7_or0 = (fa(((h_u_arrmul16_and11_7 >> 0) & 0x01), ((h_u_arrmul16_fa12_6_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa10_7_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and12_7 = and_gate(((a >> 12) & 0x01), ((b >> 7) & 0x01));
|
|
h_u_arrmul16_fa12_7_xor1 = (fa(((h_u_arrmul16_and12_7 >> 0) & 0x01), ((h_u_arrmul16_fa13_6_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa11_7_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa12_7_or0 = (fa(((h_u_arrmul16_and12_7 >> 0) & 0x01), ((h_u_arrmul16_fa13_6_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa11_7_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and13_7 = and_gate(((a >> 13) & 0x01), ((b >> 7) & 0x01));
|
|
h_u_arrmul16_fa13_7_xor1 = (fa(((h_u_arrmul16_and13_7 >> 0) & 0x01), ((h_u_arrmul16_fa14_6_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa12_7_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa13_7_or0 = (fa(((h_u_arrmul16_and13_7 >> 0) & 0x01), ((h_u_arrmul16_fa14_6_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa12_7_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and14_7 = and_gate(((a >> 14) & 0x01), ((b >> 7) & 0x01));
|
|
h_u_arrmul16_fa14_7_xor1 = (fa(((h_u_arrmul16_and14_7 >> 0) & 0x01), ((h_u_arrmul16_fa15_6_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa13_7_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa14_7_or0 = (fa(((h_u_arrmul16_and14_7 >> 0) & 0x01), ((h_u_arrmul16_fa15_6_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa13_7_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and15_7 = and_gate(((a >> 15) & 0x01), ((b >> 7) & 0x01));
|
|
h_u_arrmul16_fa15_7_xor1 = (fa(((h_u_arrmul16_and15_7 >> 0) & 0x01), ((h_u_arrmul16_fa15_6_or0 >> 0) & 0x01), ((h_u_arrmul16_fa14_7_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa15_7_or0 = (fa(((h_u_arrmul16_and15_7 >> 0) & 0x01), ((h_u_arrmul16_fa15_6_or0 >> 0) & 0x01), ((h_u_arrmul16_fa14_7_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and0_8 = and_gate(((a >> 0) & 0x01), ((b >> 8) & 0x01));
|
|
h_u_arrmul16_ha0_8_xor0 = (ha(((h_u_arrmul16_and0_8 >> 0) & 0x01), ((h_u_arrmul16_fa1_7_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_ha0_8_and0 = (ha(((h_u_arrmul16_and0_8 >> 0) & 0x01), ((h_u_arrmul16_fa1_7_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and1_8 = and_gate(((a >> 1) & 0x01), ((b >> 8) & 0x01));
|
|
h_u_arrmul16_fa1_8_xor1 = (fa(((h_u_arrmul16_and1_8 >> 0) & 0x01), ((h_u_arrmul16_fa2_7_xor1 >> 0) & 0x01), ((h_u_arrmul16_ha0_8_and0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa1_8_or0 = (fa(((h_u_arrmul16_and1_8 >> 0) & 0x01), ((h_u_arrmul16_fa2_7_xor1 >> 0) & 0x01), ((h_u_arrmul16_ha0_8_and0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and2_8 = and_gate(((a >> 2) & 0x01), ((b >> 8) & 0x01));
|
|
h_u_arrmul16_fa2_8_xor1 = (fa(((h_u_arrmul16_and2_8 >> 0) & 0x01), ((h_u_arrmul16_fa3_7_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa1_8_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa2_8_or0 = (fa(((h_u_arrmul16_and2_8 >> 0) & 0x01), ((h_u_arrmul16_fa3_7_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa1_8_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and3_8 = and_gate(((a >> 3) & 0x01), ((b >> 8) & 0x01));
|
|
h_u_arrmul16_fa3_8_xor1 = (fa(((h_u_arrmul16_and3_8 >> 0) & 0x01), ((h_u_arrmul16_fa4_7_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa2_8_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa3_8_or0 = (fa(((h_u_arrmul16_and3_8 >> 0) & 0x01), ((h_u_arrmul16_fa4_7_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa2_8_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and4_8 = and_gate(((a >> 4) & 0x01), ((b >> 8) & 0x01));
|
|
h_u_arrmul16_fa4_8_xor1 = (fa(((h_u_arrmul16_and4_8 >> 0) & 0x01), ((h_u_arrmul16_fa5_7_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa3_8_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa4_8_or0 = (fa(((h_u_arrmul16_and4_8 >> 0) & 0x01), ((h_u_arrmul16_fa5_7_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa3_8_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and5_8 = and_gate(((a >> 5) & 0x01), ((b >> 8) & 0x01));
|
|
h_u_arrmul16_fa5_8_xor1 = (fa(((h_u_arrmul16_and5_8 >> 0) & 0x01), ((h_u_arrmul16_fa6_7_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa4_8_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa5_8_or0 = (fa(((h_u_arrmul16_and5_8 >> 0) & 0x01), ((h_u_arrmul16_fa6_7_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa4_8_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and6_8 = and_gate(((a >> 6) & 0x01), ((b >> 8) & 0x01));
|
|
h_u_arrmul16_fa6_8_xor1 = (fa(((h_u_arrmul16_and6_8 >> 0) & 0x01), ((h_u_arrmul16_fa7_7_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa5_8_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa6_8_or0 = (fa(((h_u_arrmul16_and6_8 >> 0) & 0x01), ((h_u_arrmul16_fa7_7_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa5_8_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and7_8 = and_gate(((a >> 7) & 0x01), ((b >> 8) & 0x01));
|
|
h_u_arrmul16_fa7_8_xor1 = (fa(((h_u_arrmul16_and7_8 >> 0) & 0x01), ((h_u_arrmul16_fa8_7_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa6_8_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa7_8_or0 = (fa(((h_u_arrmul16_and7_8 >> 0) & 0x01), ((h_u_arrmul16_fa8_7_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa6_8_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and8_8 = and_gate(((a >> 8) & 0x01), ((b >> 8) & 0x01));
|
|
h_u_arrmul16_fa8_8_xor1 = (fa(((h_u_arrmul16_and8_8 >> 0) & 0x01), ((h_u_arrmul16_fa9_7_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa7_8_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa8_8_or0 = (fa(((h_u_arrmul16_and8_8 >> 0) & 0x01), ((h_u_arrmul16_fa9_7_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa7_8_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and9_8 = and_gate(((a >> 9) & 0x01), ((b >> 8) & 0x01));
|
|
h_u_arrmul16_fa9_8_xor1 = (fa(((h_u_arrmul16_and9_8 >> 0) & 0x01), ((h_u_arrmul16_fa10_7_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa8_8_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa9_8_or0 = (fa(((h_u_arrmul16_and9_8 >> 0) & 0x01), ((h_u_arrmul16_fa10_7_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa8_8_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and10_8 = and_gate(((a >> 10) & 0x01), ((b >> 8) & 0x01));
|
|
h_u_arrmul16_fa10_8_xor1 = (fa(((h_u_arrmul16_and10_8 >> 0) & 0x01), ((h_u_arrmul16_fa11_7_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa9_8_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa10_8_or0 = (fa(((h_u_arrmul16_and10_8 >> 0) & 0x01), ((h_u_arrmul16_fa11_7_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa9_8_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and11_8 = and_gate(((a >> 11) & 0x01), ((b >> 8) & 0x01));
|
|
h_u_arrmul16_fa11_8_xor1 = (fa(((h_u_arrmul16_and11_8 >> 0) & 0x01), ((h_u_arrmul16_fa12_7_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa10_8_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa11_8_or0 = (fa(((h_u_arrmul16_and11_8 >> 0) & 0x01), ((h_u_arrmul16_fa12_7_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa10_8_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and12_8 = and_gate(((a >> 12) & 0x01), ((b >> 8) & 0x01));
|
|
h_u_arrmul16_fa12_8_xor1 = (fa(((h_u_arrmul16_and12_8 >> 0) & 0x01), ((h_u_arrmul16_fa13_7_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa11_8_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa12_8_or0 = (fa(((h_u_arrmul16_and12_8 >> 0) & 0x01), ((h_u_arrmul16_fa13_7_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa11_8_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and13_8 = and_gate(((a >> 13) & 0x01), ((b >> 8) & 0x01));
|
|
h_u_arrmul16_fa13_8_xor1 = (fa(((h_u_arrmul16_and13_8 >> 0) & 0x01), ((h_u_arrmul16_fa14_7_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa12_8_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa13_8_or0 = (fa(((h_u_arrmul16_and13_8 >> 0) & 0x01), ((h_u_arrmul16_fa14_7_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa12_8_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and14_8 = and_gate(((a >> 14) & 0x01), ((b >> 8) & 0x01));
|
|
h_u_arrmul16_fa14_8_xor1 = (fa(((h_u_arrmul16_and14_8 >> 0) & 0x01), ((h_u_arrmul16_fa15_7_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa13_8_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa14_8_or0 = (fa(((h_u_arrmul16_and14_8 >> 0) & 0x01), ((h_u_arrmul16_fa15_7_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa13_8_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and15_8 = and_gate(((a >> 15) & 0x01), ((b >> 8) & 0x01));
|
|
h_u_arrmul16_fa15_8_xor1 = (fa(((h_u_arrmul16_and15_8 >> 0) & 0x01), ((h_u_arrmul16_fa15_7_or0 >> 0) & 0x01), ((h_u_arrmul16_fa14_8_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa15_8_or0 = (fa(((h_u_arrmul16_and15_8 >> 0) & 0x01), ((h_u_arrmul16_fa15_7_or0 >> 0) & 0x01), ((h_u_arrmul16_fa14_8_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and0_9 = and_gate(((a >> 0) & 0x01), ((b >> 9) & 0x01));
|
|
h_u_arrmul16_ha0_9_xor0 = (ha(((h_u_arrmul16_and0_9 >> 0) & 0x01), ((h_u_arrmul16_fa1_8_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_ha0_9_and0 = (ha(((h_u_arrmul16_and0_9 >> 0) & 0x01), ((h_u_arrmul16_fa1_8_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and1_9 = and_gate(((a >> 1) & 0x01), ((b >> 9) & 0x01));
|
|
h_u_arrmul16_fa1_9_xor1 = (fa(((h_u_arrmul16_and1_9 >> 0) & 0x01), ((h_u_arrmul16_fa2_8_xor1 >> 0) & 0x01), ((h_u_arrmul16_ha0_9_and0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa1_9_or0 = (fa(((h_u_arrmul16_and1_9 >> 0) & 0x01), ((h_u_arrmul16_fa2_8_xor1 >> 0) & 0x01), ((h_u_arrmul16_ha0_9_and0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and2_9 = and_gate(((a >> 2) & 0x01), ((b >> 9) & 0x01));
|
|
h_u_arrmul16_fa2_9_xor1 = (fa(((h_u_arrmul16_and2_9 >> 0) & 0x01), ((h_u_arrmul16_fa3_8_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa1_9_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa2_9_or0 = (fa(((h_u_arrmul16_and2_9 >> 0) & 0x01), ((h_u_arrmul16_fa3_8_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa1_9_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and3_9 = and_gate(((a >> 3) & 0x01), ((b >> 9) & 0x01));
|
|
h_u_arrmul16_fa3_9_xor1 = (fa(((h_u_arrmul16_and3_9 >> 0) & 0x01), ((h_u_arrmul16_fa4_8_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa2_9_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa3_9_or0 = (fa(((h_u_arrmul16_and3_9 >> 0) & 0x01), ((h_u_arrmul16_fa4_8_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa2_9_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and4_9 = and_gate(((a >> 4) & 0x01), ((b >> 9) & 0x01));
|
|
h_u_arrmul16_fa4_9_xor1 = (fa(((h_u_arrmul16_and4_9 >> 0) & 0x01), ((h_u_arrmul16_fa5_8_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa3_9_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa4_9_or0 = (fa(((h_u_arrmul16_and4_9 >> 0) & 0x01), ((h_u_arrmul16_fa5_8_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa3_9_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and5_9 = and_gate(((a >> 5) & 0x01), ((b >> 9) & 0x01));
|
|
h_u_arrmul16_fa5_9_xor1 = (fa(((h_u_arrmul16_and5_9 >> 0) & 0x01), ((h_u_arrmul16_fa6_8_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa4_9_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa5_9_or0 = (fa(((h_u_arrmul16_and5_9 >> 0) & 0x01), ((h_u_arrmul16_fa6_8_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa4_9_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and6_9 = and_gate(((a >> 6) & 0x01), ((b >> 9) & 0x01));
|
|
h_u_arrmul16_fa6_9_xor1 = (fa(((h_u_arrmul16_and6_9 >> 0) & 0x01), ((h_u_arrmul16_fa7_8_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa5_9_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa6_9_or0 = (fa(((h_u_arrmul16_and6_9 >> 0) & 0x01), ((h_u_arrmul16_fa7_8_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa5_9_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and7_9 = and_gate(((a >> 7) & 0x01), ((b >> 9) & 0x01));
|
|
h_u_arrmul16_fa7_9_xor1 = (fa(((h_u_arrmul16_and7_9 >> 0) & 0x01), ((h_u_arrmul16_fa8_8_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa6_9_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa7_9_or0 = (fa(((h_u_arrmul16_and7_9 >> 0) & 0x01), ((h_u_arrmul16_fa8_8_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa6_9_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and8_9 = and_gate(((a >> 8) & 0x01), ((b >> 9) & 0x01));
|
|
h_u_arrmul16_fa8_9_xor1 = (fa(((h_u_arrmul16_and8_9 >> 0) & 0x01), ((h_u_arrmul16_fa9_8_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa7_9_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa8_9_or0 = (fa(((h_u_arrmul16_and8_9 >> 0) & 0x01), ((h_u_arrmul16_fa9_8_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa7_9_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and9_9 = and_gate(((a >> 9) & 0x01), ((b >> 9) & 0x01));
|
|
h_u_arrmul16_fa9_9_xor1 = (fa(((h_u_arrmul16_and9_9 >> 0) & 0x01), ((h_u_arrmul16_fa10_8_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa8_9_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa9_9_or0 = (fa(((h_u_arrmul16_and9_9 >> 0) & 0x01), ((h_u_arrmul16_fa10_8_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa8_9_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and10_9 = and_gate(((a >> 10) & 0x01), ((b >> 9) & 0x01));
|
|
h_u_arrmul16_fa10_9_xor1 = (fa(((h_u_arrmul16_and10_9 >> 0) & 0x01), ((h_u_arrmul16_fa11_8_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa9_9_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa10_9_or0 = (fa(((h_u_arrmul16_and10_9 >> 0) & 0x01), ((h_u_arrmul16_fa11_8_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa9_9_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and11_9 = and_gate(((a >> 11) & 0x01), ((b >> 9) & 0x01));
|
|
h_u_arrmul16_fa11_9_xor1 = (fa(((h_u_arrmul16_and11_9 >> 0) & 0x01), ((h_u_arrmul16_fa12_8_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa10_9_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa11_9_or0 = (fa(((h_u_arrmul16_and11_9 >> 0) & 0x01), ((h_u_arrmul16_fa12_8_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa10_9_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and12_9 = and_gate(((a >> 12) & 0x01), ((b >> 9) & 0x01));
|
|
h_u_arrmul16_fa12_9_xor1 = (fa(((h_u_arrmul16_and12_9 >> 0) & 0x01), ((h_u_arrmul16_fa13_8_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa11_9_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa12_9_or0 = (fa(((h_u_arrmul16_and12_9 >> 0) & 0x01), ((h_u_arrmul16_fa13_8_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa11_9_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and13_9 = and_gate(((a >> 13) & 0x01), ((b >> 9) & 0x01));
|
|
h_u_arrmul16_fa13_9_xor1 = (fa(((h_u_arrmul16_and13_9 >> 0) & 0x01), ((h_u_arrmul16_fa14_8_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa12_9_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa13_9_or0 = (fa(((h_u_arrmul16_and13_9 >> 0) & 0x01), ((h_u_arrmul16_fa14_8_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa12_9_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and14_9 = and_gate(((a >> 14) & 0x01), ((b >> 9) & 0x01));
|
|
h_u_arrmul16_fa14_9_xor1 = (fa(((h_u_arrmul16_and14_9 >> 0) & 0x01), ((h_u_arrmul16_fa15_8_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa13_9_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa14_9_or0 = (fa(((h_u_arrmul16_and14_9 >> 0) & 0x01), ((h_u_arrmul16_fa15_8_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa13_9_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and15_9 = and_gate(((a >> 15) & 0x01), ((b >> 9) & 0x01));
|
|
h_u_arrmul16_fa15_9_xor1 = (fa(((h_u_arrmul16_and15_9 >> 0) & 0x01), ((h_u_arrmul16_fa15_8_or0 >> 0) & 0x01), ((h_u_arrmul16_fa14_9_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa15_9_or0 = (fa(((h_u_arrmul16_and15_9 >> 0) & 0x01), ((h_u_arrmul16_fa15_8_or0 >> 0) & 0x01), ((h_u_arrmul16_fa14_9_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and0_10 = and_gate(((a >> 0) & 0x01), ((b >> 10) & 0x01));
|
|
h_u_arrmul16_ha0_10_xor0 = (ha(((h_u_arrmul16_and0_10 >> 0) & 0x01), ((h_u_arrmul16_fa1_9_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_ha0_10_and0 = (ha(((h_u_arrmul16_and0_10 >> 0) & 0x01), ((h_u_arrmul16_fa1_9_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and1_10 = and_gate(((a >> 1) & 0x01), ((b >> 10) & 0x01));
|
|
h_u_arrmul16_fa1_10_xor1 = (fa(((h_u_arrmul16_and1_10 >> 0) & 0x01), ((h_u_arrmul16_fa2_9_xor1 >> 0) & 0x01), ((h_u_arrmul16_ha0_10_and0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa1_10_or0 = (fa(((h_u_arrmul16_and1_10 >> 0) & 0x01), ((h_u_arrmul16_fa2_9_xor1 >> 0) & 0x01), ((h_u_arrmul16_ha0_10_and0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and2_10 = and_gate(((a >> 2) & 0x01), ((b >> 10) & 0x01));
|
|
h_u_arrmul16_fa2_10_xor1 = (fa(((h_u_arrmul16_and2_10 >> 0) & 0x01), ((h_u_arrmul16_fa3_9_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa1_10_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa2_10_or0 = (fa(((h_u_arrmul16_and2_10 >> 0) & 0x01), ((h_u_arrmul16_fa3_9_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa1_10_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and3_10 = and_gate(((a >> 3) & 0x01), ((b >> 10) & 0x01));
|
|
h_u_arrmul16_fa3_10_xor1 = (fa(((h_u_arrmul16_and3_10 >> 0) & 0x01), ((h_u_arrmul16_fa4_9_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa2_10_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa3_10_or0 = (fa(((h_u_arrmul16_and3_10 >> 0) & 0x01), ((h_u_arrmul16_fa4_9_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa2_10_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and4_10 = and_gate(((a >> 4) & 0x01), ((b >> 10) & 0x01));
|
|
h_u_arrmul16_fa4_10_xor1 = (fa(((h_u_arrmul16_and4_10 >> 0) & 0x01), ((h_u_arrmul16_fa5_9_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa3_10_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa4_10_or0 = (fa(((h_u_arrmul16_and4_10 >> 0) & 0x01), ((h_u_arrmul16_fa5_9_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa3_10_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and5_10 = and_gate(((a >> 5) & 0x01), ((b >> 10) & 0x01));
|
|
h_u_arrmul16_fa5_10_xor1 = (fa(((h_u_arrmul16_and5_10 >> 0) & 0x01), ((h_u_arrmul16_fa6_9_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa4_10_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa5_10_or0 = (fa(((h_u_arrmul16_and5_10 >> 0) & 0x01), ((h_u_arrmul16_fa6_9_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa4_10_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and6_10 = and_gate(((a >> 6) & 0x01), ((b >> 10) & 0x01));
|
|
h_u_arrmul16_fa6_10_xor1 = (fa(((h_u_arrmul16_and6_10 >> 0) & 0x01), ((h_u_arrmul16_fa7_9_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa5_10_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa6_10_or0 = (fa(((h_u_arrmul16_and6_10 >> 0) & 0x01), ((h_u_arrmul16_fa7_9_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa5_10_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and7_10 = and_gate(((a >> 7) & 0x01), ((b >> 10) & 0x01));
|
|
h_u_arrmul16_fa7_10_xor1 = (fa(((h_u_arrmul16_and7_10 >> 0) & 0x01), ((h_u_arrmul16_fa8_9_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa6_10_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa7_10_or0 = (fa(((h_u_arrmul16_and7_10 >> 0) & 0x01), ((h_u_arrmul16_fa8_9_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa6_10_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and8_10 = and_gate(((a >> 8) & 0x01), ((b >> 10) & 0x01));
|
|
h_u_arrmul16_fa8_10_xor1 = (fa(((h_u_arrmul16_and8_10 >> 0) & 0x01), ((h_u_arrmul16_fa9_9_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa7_10_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa8_10_or0 = (fa(((h_u_arrmul16_and8_10 >> 0) & 0x01), ((h_u_arrmul16_fa9_9_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa7_10_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and9_10 = and_gate(((a >> 9) & 0x01), ((b >> 10) & 0x01));
|
|
h_u_arrmul16_fa9_10_xor1 = (fa(((h_u_arrmul16_and9_10 >> 0) & 0x01), ((h_u_arrmul16_fa10_9_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa8_10_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa9_10_or0 = (fa(((h_u_arrmul16_and9_10 >> 0) & 0x01), ((h_u_arrmul16_fa10_9_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa8_10_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and10_10 = and_gate(((a >> 10) & 0x01), ((b >> 10) & 0x01));
|
|
h_u_arrmul16_fa10_10_xor1 = (fa(((h_u_arrmul16_and10_10 >> 0) & 0x01), ((h_u_arrmul16_fa11_9_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa9_10_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa10_10_or0 = (fa(((h_u_arrmul16_and10_10 >> 0) & 0x01), ((h_u_arrmul16_fa11_9_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa9_10_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and11_10 = and_gate(((a >> 11) & 0x01), ((b >> 10) & 0x01));
|
|
h_u_arrmul16_fa11_10_xor1 = (fa(((h_u_arrmul16_and11_10 >> 0) & 0x01), ((h_u_arrmul16_fa12_9_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa10_10_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa11_10_or0 = (fa(((h_u_arrmul16_and11_10 >> 0) & 0x01), ((h_u_arrmul16_fa12_9_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa10_10_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and12_10 = and_gate(((a >> 12) & 0x01), ((b >> 10) & 0x01));
|
|
h_u_arrmul16_fa12_10_xor1 = (fa(((h_u_arrmul16_and12_10 >> 0) & 0x01), ((h_u_arrmul16_fa13_9_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa11_10_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa12_10_or0 = (fa(((h_u_arrmul16_and12_10 >> 0) & 0x01), ((h_u_arrmul16_fa13_9_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa11_10_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and13_10 = and_gate(((a >> 13) & 0x01), ((b >> 10) & 0x01));
|
|
h_u_arrmul16_fa13_10_xor1 = (fa(((h_u_arrmul16_and13_10 >> 0) & 0x01), ((h_u_arrmul16_fa14_9_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa12_10_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa13_10_or0 = (fa(((h_u_arrmul16_and13_10 >> 0) & 0x01), ((h_u_arrmul16_fa14_9_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa12_10_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and14_10 = and_gate(((a >> 14) & 0x01), ((b >> 10) & 0x01));
|
|
h_u_arrmul16_fa14_10_xor1 = (fa(((h_u_arrmul16_and14_10 >> 0) & 0x01), ((h_u_arrmul16_fa15_9_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa13_10_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa14_10_or0 = (fa(((h_u_arrmul16_and14_10 >> 0) & 0x01), ((h_u_arrmul16_fa15_9_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa13_10_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and15_10 = and_gate(((a >> 15) & 0x01), ((b >> 10) & 0x01));
|
|
h_u_arrmul16_fa15_10_xor1 = (fa(((h_u_arrmul16_and15_10 >> 0) & 0x01), ((h_u_arrmul16_fa15_9_or0 >> 0) & 0x01), ((h_u_arrmul16_fa14_10_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa15_10_or0 = (fa(((h_u_arrmul16_and15_10 >> 0) & 0x01), ((h_u_arrmul16_fa15_9_or0 >> 0) & 0x01), ((h_u_arrmul16_fa14_10_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and0_11 = and_gate(((a >> 0) & 0x01), ((b >> 11) & 0x01));
|
|
h_u_arrmul16_ha0_11_xor0 = (ha(((h_u_arrmul16_and0_11 >> 0) & 0x01), ((h_u_arrmul16_fa1_10_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_ha0_11_and0 = (ha(((h_u_arrmul16_and0_11 >> 0) & 0x01), ((h_u_arrmul16_fa1_10_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and1_11 = and_gate(((a >> 1) & 0x01), ((b >> 11) & 0x01));
|
|
h_u_arrmul16_fa1_11_xor1 = (fa(((h_u_arrmul16_and1_11 >> 0) & 0x01), ((h_u_arrmul16_fa2_10_xor1 >> 0) & 0x01), ((h_u_arrmul16_ha0_11_and0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa1_11_or0 = (fa(((h_u_arrmul16_and1_11 >> 0) & 0x01), ((h_u_arrmul16_fa2_10_xor1 >> 0) & 0x01), ((h_u_arrmul16_ha0_11_and0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and2_11 = and_gate(((a >> 2) & 0x01), ((b >> 11) & 0x01));
|
|
h_u_arrmul16_fa2_11_xor1 = (fa(((h_u_arrmul16_and2_11 >> 0) & 0x01), ((h_u_arrmul16_fa3_10_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa1_11_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa2_11_or0 = (fa(((h_u_arrmul16_and2_11 >> 0) & 0x01), ((h_u_arrmul16_fa3_10_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa1_11_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and3_11 = and_gate(((a >> 3) & 0x01), ((b >> 11) & 0x01));
|
|
h_u_arrmul16_fa3_11_xor1 = (fa(((h_u_arrmul16_and3_11 >> 0) & 0x01), ((h_u_arrmul16_fa4_10_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa2_11_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa3_11_or0 = (fa(((h_u_arrmul16_and3_11 >> 0) & 0x01), ((h_u_arrmul16_fa4_10_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa2_11_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and4_11 = and_gate(((a >> 4) & 0x01), ((b >> 11) & 0x01));
|
|
h_u_arrmul16_fa4_11_xor1 = (fa(((h_u_arrmul16_and4_11 >> 0) & 0x01), ((h_u_arrmul16_fa5_10_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa3_11_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa4_11_or0 = (fa(((h_u_arrmul16_and4_11 >> 0) & 0x01), ((h_u_arrmul16_fa5_10_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa3_11_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and5_11 = and_gate(((a >> 5) & 0x01), ((b >> 11) & 0x01));
|
|
h_u_arrmul16_fa5_11_xor1 = (fa(((h_u_arrmul16_and5_11 >> 0) & 0x01), ((h_u_arrmul16_fa6_10_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa4_11_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa5_11_or0 = (fa(((h_u_arrmul16_and5_11 >> 0) & 0x01), ((h_u_arrmul16_fa6_10_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa4_11_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and6_11 = and_gate(((a >> 6) & 0x01), ((b >> 11) & 0x01));
|
|
h_u_arrmul16_fa6_11_xor1 = (fa(((h_u_arrmul16_and6_11 >> 0) & 0x01), ((h_u_arrmul16_fa7_10_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa5_11_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa6_11_or0 = (fa(((h_u_arrmul16_and6_11 >> 0) & 0x01), ((h_u_arrmul16_fa7_10_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa5_11_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and7_11 = and_gate(((a >> 7) & 0x01), ((b >> 11) & 0x01));
|
|
h_u_arrmul16_fa7_11_xor1 = (fa(((h_u_arrmul16_and7_11 >> 0) & 0x01), ((h_u_arrmul16_fa8_10_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa6_11_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa7_11_or0 = (fa(((h_u_arrmul16_and7_11 >> 0) & 0x01), ((h_u_arrmul16_fa8_10_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa6_11_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and8_11 = and_gate(((a >> 8) & 0x01), ((b >> 11) & 0x01));
|
|
h_u_arrmul16_fa8_11_xor1 = (fa(((h_u_arrmul16_and8_11 >> 0) & 0x01), ((h_u_arrmul16_fa9_10_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa7_11_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa8_11_or0 = (fa(((h_u_arrmul16_and8_11 >> 0) & 0x01), ((h_u_arrmul16_fa9_10_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa7_11_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and9_11 = and_gate(((a >> 9) & 0x01), ((b >> 11) & 0x01));
|
|
h_u_arrmul16_fa9_11_xor1 = (fa(((h_u_arrmul16_and9_11 >> 0) & 0x01), ((h_u_arrmul16_fa10_10_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa8_11_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa9_11_or0 = (fa(((h_u_arrmul16_and9_11 >> 0) & 0x01), ((h_u_arrmul16_fa10_10_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa8_11_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and10_11 = and_gate(((a >> 10) & 0x01), ((b >> 11) & 0x01));
|
|
h_u_arrmul16_fa10_11_xor1 = (fa(((h_u_arrmul16_and10_11 >> 0) & 0x01), ((h_u_arrmul16_fa11_10_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa9_11_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa10_11_or0 = (fa(((h_u_arrmul16_and10_11 >> 0) & 0x01), ((h_u_arrmul16_fa11_10_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa9_11_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and11_11 = and_gate(((a >> 11) & 0x01), ((b >> 11) & 0x01));
|
|
h_u_arrmul16_fa11_11_xor1 = (fa(((h_u_arrmul16_and11_11 >> 0) & 0x01), ((h_u_arrmul16_fa12_10_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa10_11_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa11_11_or0 = (fa(((h_u_arrmul16_and11_11 >> 0) & 0x01), ((h_u_arrmul16_fa12_10_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa10_11_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and12_11 = and_gate(((a >> 12) & 0x01), ((b >> 11) & 0x01));
|
|
h_u_arrmul16_fa12_11_xor1 = (fa(((h_u_arrmul16_and12_11 >> 0) & 0x01), ((h_u_arrmul16_fa13_10_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa11_11_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa12_11_or0 = (fa(((h_u_arrmul16_and12_11 >> 0) & 0x01), ((h_u_arrmul16_fa13_10_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa11_11_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and13_11 = and_gate(((a >> 13) & 0x01), ((b >> 11) & 0x01));
|
|
h_u_arrmul16_fa13_11_xor1 = (fa(((h_u_arrmul16_and13_11 >> 0) & 0x01), ((h_u_arrmul16_fa14_10_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa12_11_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa13_11_or0 = (fa(((h_u_arrmul16_and13_11 >> 0) & 0x01), ((h_u_arrmul16_fa14_10_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa12_11_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and14_11 = and_gate(((a >> 14) & 0x01), ((b >> 11) & 0x01));
|
|
h_u_arrmul16_fa14_11_xor1 = (fa(((h_u_arrmul16_and14_11 >> 0) & 0x01), ((h_u_arrmul16_fa15_10_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa13_11_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa14_11_or0 = (fa(((h_u_arrmul16_and14_11 >> 0) & 0x01), ((h_u_arrmul16_fa15_10_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa13_11_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and15_11 = and_gate(((a >> 15) & 0x01), ((b >> 11) & 0x01));
|
|
h_u_arrmul16_fa15_11_xor1 = (fa(((h_u_arrmul16_and15_11 >> 0) & 0x01), ((h_u_arrmul16_fa15_10_or0 >> 0) & 0x01), ((h_u_arrmul16_fa14_11_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa15_11_or0 = (fa(((h_u_arrmul16_and15_11 >> 0) & 0x01), ((h_u_arrmul16_fa15_10_or0 >> 0) & 0x01), ((h_u_arrmul16_fa14_11_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and0_12 = and_gate(((a >> 0) & 0x01), ((b >> 12) & 0x01));
|
|
h_u_arrmul16_ha0_12_xor0 = (ha(((h_u_arrmul16_and0_12 >> 0) & 0x01), ((h_u_arrmul16_fa1_11_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_ha0_12_and0 = (ha(((h_u_arrmul16_and0_12 >> 0) & 0x01), ((h_u_arrmul16_fa1_11_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and1_12 = and_gate(((a >> 1) & 0x01), ((b >> 12) & 0x01));
|
|
h_u_arrmul16_fa1_12_xor1 = (fa(((h_u_arrmul16_and1_12 >> 0) & 0x01), ((h_u_arrmul16_fa2_11_xor1 >> 0) & 0x01), ((h_u_arrmul16_ha0_12_and0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa1_12_or0 = (fa(((h_u_arrmul16_and1_12 >> 0) & 0x01), ((h_u_arrmul16_fa2_11_xor1 >> 0) & 0x01), ((h_u_arrmul16_ha0_12_and0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and2_12 = and_gate(((a >> 2) & 0x01), ((b >> 12) & 0x01));
|
|
h_u_arrmul16_fa2_12_xor1 = (fa(((h_u_arrmul16_and2_12 >> 0) & 0x01), ((h_u_arrmul16_fa3_11_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa1_12_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa2_12_or0 = (fa(((h_u_arrmul16_and2_12 >> 0) & 0x01), ((h_u_arrmul16_fa3_11_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa1_12_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and3_12 = and_gate(((a >> 3) & 0x01), ((b >> 12) & 0x01));
|
|
h_u_arrmul16_fa3_12_xor1 = (fa(((h_u_arrmul16_and3_12 >> 0) & 0x01), ((h_u_arrmul16_fa4_11_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa2_12_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa3_12_or0 = (fa(((h_u_arrmul16_and3_12 >> 0) & 0x01), ((h_u_arrmul16_fa4_11_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa2_12_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and4_12 = and_gate(((a >> 4) & 0x01), ((b >> 12) & 0x01));
|
|
h_u_arrmul16_fa4_12_xor1 = (fa(((h_u_arrmul16_and4_12 >> 0) & 0x01), ((h_u_arrmul16_fa5_11_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa3_12_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa4_12_or0 = (fa(((h_u_arrmul16_and4_12 >> 0) & 0x01), ((h_u_arrmul16_fa5_11_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa3_12_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and5_12 = and_gate(((a >> 5) & 0x01), ((b >> 12) & 0x01));
|
|
h_u_arrmul16_fa5_12_xor1 = (fa(((h_u_arrmul16_and5_12 >> 0) & 0x01), ((h_u_arrmul16_fa6_11_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa4_12_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa5_12_or0 = (fa(((h_u_arrmul16_and5_12 >> 0) & 0x01), ((h_u_arrmul16_fa6_11_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa4_12_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and6_12 = and_gate(((a >> 6) & 0x01), ((b >> 12) & 0x01));
|
|
h_u_arrmul16_fa6_12_xor1 = (fa(((h_u_arrmul16_and6_12 >> 0) & 0x01), ((h_u_arrmul16_fa7_11_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa5_12_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa6_12_or0 = (fa(((h_u_arrmul16_and6_12 >> 0) & 0x01), ((h_u_arrmul16_fa7_11_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa5_12_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and7_12 = and_gate(((a >> 7) & 0x01), ((b >> 12) & 0x01));
|
|
h_u_arrmul16_fa7_12_xor1 = (fa(((h_u_arrmul16_and7_12 >> 0) & 0x01), ((h_u_arrmul16_fa8_11_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa6_12_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa7_12_or0 = (fa(((h_u_arrmul16_and7_12 >> 0) & 0x01), ((h_u_arrmul16_fa8_11_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa6_12_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and8_12 = and_gate(((a >> 8) & 0x01), ((b >> 12) & 0x01));
|
|
h_u_arrmul16_fa8_12_xor1 = (fa(((h_u_arrmul16_and8_12 >> 0) & 0x01), ((h_u_arrmul16_fa9_11_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa7_12_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa8_12_or0 = (fa(((h_u_arrmul16_and8_12 >> 0) & 0x01), ((h_u_arrmul16_fa9_11_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa7_12_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and9_12 = and_gate(((a >> 9) & 0x01), ((b >> 12) & 0x01));
|
|
h_u_arrmul16_fa9_12_xor1 = (fa(((h_u_arrmul16_and9_12 >> 0) & 0x01), ((h_u_arrmul16_fa10_11_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa8_12_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa9_12_or0 = (fa(((h_u_arrmul16_and9_12 >> 0) & 0x01), ((h_u_arrmul16_fa10_11_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa8_12_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and10_12 = and_gate(((a >> 10) & 0x01), ((b >> 12) & 0x01));
|
|
h_u_arrmul16_fa10_12_xor1 = (fa(((h_u_arrmul16_and10_12 >> 0) & 0x01), ((h_u_arrmul16_fa11_11_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa9_12_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa10_12_or0 = (fa(((h_u_arrmul16_and10_12 >> 0) & 0x01), ((h_u_arrmul16_fa11_11_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa9_12_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and11_12 = and_gate(((a >> 11) & 0x01), ((b >> 12) & 0x01));
|
|
h_u_arrmul16_fa11_12_xor1 = (fa(((h_u_arrmul16_and11_12 >> 0) & 0x01), ((h_u_arrmul16_fa12_11_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa10_12_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa11_12_or0 = (fa(((h_u_arrmul16_and11_12 >> 0) & 0x01), ((h_u_arrmul16_fa12_11_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa10_12_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and12_12 = and_gate(((a >> 12) & 0x01), ((b >> 12) & 0x01));
|
|
h_u_arrmul16_fa12_12_xor1 = (fa(((h_u_arrmul16_and12_12 >> 0) & 0x01), ((h_u_arrmul16_fa13_11_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa11_12_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa12_12_or0 = (fa(((h_u_arrmul16_and12_12 >> 0) & 0x01), ((h_u_arrmul16_fa13_11_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa11_12_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and13_12 = and_gate(((a >> 13) & 0x01), ((b >> 12) & 0x01));
|
|
h_u_arrmul16_fa13_12_xor1 = (fa(((h_u_arrmul16_and13_12 >> 0) & 0x01), ((h_u_arrmul16_fa14_11_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa12_12_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa13_12_or0 = (fa(((h_u_arrmul16_and13_12 >> 0) & 0x01), ((h_u_arrmul16_fa14_11_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa12_12_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and14_12 = and_gate(((a >> 14) & 0x01), ((b >> 12) & 0x01));
|
|
h_u_arrmul16_fa14_12_xor1 = (fa(((h_u_arrmul16_and14_12 >> 0) & 0x01), ((h_u_arrmul16_fa15_11_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa13_12_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa14_12_or0 = (fa(((h_u_arrmul16_and14_12 >> 0) & 0x01), ((h_u_arrmul16_fa15_11_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa13_12_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and15_12 = and_gate(((a >> 15) & 0x01), ((b >> 12) & 0x01));
|
|
h_u_arrmul16_fa15_12_xor1 = (fa(((h_u_arrmul16_and15_12 >> 0) & 0x01), ((h_u_arrmul16_fa15_11_or0 >> 0) & 0x01), ((h_u_arrmul16_fa14_12_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa15_12_or0 = (fa(((h_u_arrmul16_and15_12 >> 0) & 0x01), ((h_u_arrmul16_fa15_11_or0 >> 0) & 0x01), ((h_u_arrmul16_fa14_12_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and0_13 = and_gate(((a >> 0) & 0x01), ((b >> 13) & 0x01));
|
|
h_u_arrmul16_ha0_13_xor0 = (ha(((h_u_arrmul16_and0_13 >> 0) & 0x01), ((h_u_arrmul16_fa1_12_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_ha0_13_and0 = (ha(((h_u_arrmul16_and0_13 >> 0) & 0x01), ((h_u_arrmul16_fa1_12_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and1_13 = and_gate(((a >> 1) & 0x01), ((b >> 13) & 0x01));
|
|
h_u_arrmul16_fa1_13_xor1 = (fa(((h_u_arrmul16_and1_13 >> 0) & 0x01), ((h_u_arrmul16_fa2_12_xor1 >> 0) & 0x01), ((h_u_arrmul16_ha0_13_and0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa1_13_or0 = (fa(((h_u_arrmul16_and1_13 >> 0) & 0x01), ((h_u_arrmul16_fa2_12_xor1 >> 0) & 0x01), ((h_u_arrmul16_ha0_13_and0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and2_13 = and_gate(((a >> 2) & 0x01), ((b >> 13) & 0x01));
|
|
h_u_arrmul16_fa2_13_xor1 = (fa(((h_u_arrmul16_and2_13 >> 0) & 0x01), ((h_u_arrmul16_fa3_12_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa1_13_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa2_13_or0 = (fa(((h_u_arrmul16_and2_13 >> 0) & 0x01), ((h_u_arrmul16_fa3_12_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa1_13_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and3_13 = and_gate(((a >> 3) & 0x01), ((b >> 13) & 0x01));
|
|
h_u_arrmul16_fa3_13_xor1 = (fa(((h_u_arrmul16_and3_13 >> 0) & 0x01), ((h_u_arrmul16_fa4_12_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa2_13_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa3_13_or0 = (fa(((h_u_arrmul16_and3_13 >> 0) & 0x01), ((h_u_arrmul16_fa4_12_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa2_13_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and4_13 = and_gate(((a >> 4) & 0x01), ((b >> 13) & 0x01));
|
|
h_u_arrmul16_fa4_13_xor1 = (fa(((h_u_arrmul16_and4_13 >> 0) & 0x01), ((h_u_arrmul16_fa5_12_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa3_13_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa4_13_or0 = (fa(((h_u_arrmul16_and4_13 >> 0) & 0x01), ((h_u_arrmul16_fa5_12_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa3_13_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and5_13 = and_gate(((a >> 5) & 0x01), ((b >> 13) & 0x01));
|
|
h_u_arrmul16_fa5_13_xor1 = (fa(((h_u_arrmul16_and5_13 >> 0) & 0x01), ((h_u_arrmul16_fa6_12_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa4_13_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa5_13_or0 = (fa(((h_u_arrmul16_and5_13 >> 0) & 0x01), ((h_u_arrmul16_fa6_12_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa4_13_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and6_13 = and_gate(((a >> 6) & 0x01), ((b >> 13) & 0x01));
|
|
h_u_arrmul16_fa6_13_xor1 = (fa(((h_u_arrmul16_and6_13 >> 0) & 0x01), ((h_u_arrmul16_fa7_12_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa5_13_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa6_13_or0 = (fa(((h_u_arrmul16_and6_13 >> 0) & 0x01), ((h_u_arrmul16_fa7_12_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa5_13_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and7_13 = and_gate(((a >> 7) & 0x01), ((b >> 13) & 0x01));
|
|
h_u_arrmul16_fa7_13_xor1 = (fa(((h_u_arrmul16_and7_13 >> 0) & 0x01), ((h_u_arrmul16_fa8_12_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa6_13_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa7_13_or0 = (fa(((h_u_arrmul16_and7_13 >> 0) & 0x01), ((h_u_arrmul16_fa8_12_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa6_13_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and8_13 = and_gate(((a >> 8) & 0x01), ((b >> 13) & 0x01));
|
|
h_u_arrmul16_fa8_13_xor1 = (fa(((h_u_arrmul16_and8_13 >> 0) & 0x01), ((h_u_arrmul16_fa9_12_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa7_13_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa8_13_or0 = (fa(((h_u_arrmul16_and8_13 >> 0) & 0x01), ((h_u_arrmul16_fa9_12_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa7_13_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and9_13 = and_gate(((a >> 9) & 0x01), ((b >> 13) & 0x01));
|
|
h_u_arrmul16_fa9_13_xor1 = (fa(((h_u_arrmul16_and9_13 >> 0) & 0x01), ((h_u_arrmul16_fa10_12_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa8_13_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa9_13_or0 = (fa(((h_u_arrmul16_and9_13 >> 0) & 0x01), ((h_u_arrmul16_fa10_12_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa8_13_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and10_13 = and_gate(((a >> 10) & 0x01), ((b >> 13) & 0x01));
|
|
h_u_arrmul16_fa10_13_xor1 = (fa(((h_u_arrmul16_and10_13 >> 0) & 0x01), ((h_u_arrmul16_fa11_12_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa9_13_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa10_13_or0 = (fa(((h_u_arrmul16_and10_13 >> 0) & 0x01), ((h_u_arrmul16_fa11_12_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa9_13_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and11_13 = and_gate(((a >> 11) & 0x01), ((b >> 13) & 0x01));
|
|
h_u_arrmul16_fa11_13_xor1 = (fa(((h_u_arrmul16_and11_13 >> 0) & 0x01), ((h_u_arrmul16_fa12_12_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa10_13_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa11_13_or0 = (fa(((h_u_arrmul16_and11_13 >> 0) & 0x01), ((h_u_arrmul16_fa12_12_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa10_13_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and12_13 = and_gate(((a >> 12) & 0x01), ((b >> 13) & 0x01));
|
|
h_u_arrmul16_fa12_13_xor1 = (fa(((h_u_arrmul16_and12_13 >> 0) & 0x01), ((h_u_arrmul16_fa13_12_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa11_13_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa12_13_or0 = (fa(((h_u_arrmul16_and12_13 >> 0) & 0x01), ((h_u_arrmul16_fa13_12_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa11_13_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and13_13 = and_gate(((a >> 13) & 0x01), ((b >> 13) & 0x01));
|
|
h_u_arrmul16_fa13_13_xor1 = (fa(((h_u_arrmul16_and13_13 >> 0) & 0x01), ((h_u_arrmul16_fa14_12_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa12_13_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa13_13_or0 = (fa(((h_u_arrmul16_and13_13 >> 0) & 0x01), ((h_u_arrmul16_fa14_12_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa12_13_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and14_13 = and_gate(((a >> 14) & 0x01), ((b >> 13) & 0x01));
|
|
h_u_arrmul16_fa14_13_xor1 = (fa(((h_u_arrmul16_and14_13 >> 0) & 0x01), ((h_u_arrmul16_fa15_12_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa13_13_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa14_13_or0 = (fa(((h_u_arrmul16_and14_13 >> 0) & 0x01), ((h_u_arrmul16_fa15_12_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa13_13_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and15_13 = and_gate(((a >> 15) & 0x01), ((b >> 13) & 0x01));
|
|
h_u_arrmul16_fa15_13_xor1 = (fa(((h_u_arrmul16_and15_13 >> 0) & 0x01), ((h_u_arrmul16_fa15_12_or0 >> 0) & 0x01), ((h_u_arrmul16_fa14_13_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa15_13_or0 = (fa(((h_u_arrmul16_and15_13 >> 0) & 0x01), ((h_u_arrmul16_fa15_12_or0 >> 0) & 0x01), ((h_u_arrmul16_fa14_13_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and0_14 = and_gate(((a >> 0) & 0x01), ((b >> 14) & 0x01));
|
|
h_u_arrmul16_ha0_14_xor0 = (ha(((h_u_arrmul16_and0_14 >> 0) & 0x01), ((h_u_arrmul16_fa1_13_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_ha0_14_and0 = (ha(((h_u_arrmul16_and0_14 >> 0) & 0x01), ((h_u_arrmul16_fa1_13_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and1_14 = and_gate(((a >> 1) & 0x01), ((b >> 14) & 0x01));
|
|
h_u_arrmul16_fa1_14_xor1 = (fa(((h_u_arrmul16_and1_14 >> 0) & 0x01), ((h_u_arrmul16_fa2_13_xor1 >> 0) & 0x01), ((h_u_arrmul16_ha0_14_and0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa1_14_or0 = (fa(((h_u_arrmul16_and1_14 >> 0) & 0x01), ((h_u_arrmul16_fa2_13_xor1 >> 0) & 0x01), ((h_u_arrmul16_ha0_14_and0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and2_14 = and_gate(((a >> 2) & 0x01), ((b >> 14) & 0x01));
|
|
h_u_arrmul16_fa2_14_xor1 = (fa(((h_u_arrmul16_and2_14 >> 0) & 0x01), ((h_u_arrmul16_fa3_13_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa1_14_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa2_14_or0 = (fa(((h_u_arrmul16_and2_14 >> 0) & 0x01), ((h_u_arrmul16_fa3_13_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa1_14_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and3_14 = and_gate(((a >> 3) & 0x01), ((b >> 14) & 0x01));
|
|
h_u_arrmul16_fa3_14_xor1 = (fa(((h_u_arrmul16_and3_14 >> 0) & 0x01), ((h_u_arrmul16_fa4_13_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa2_14_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa3_14_or0 = (fa(((h_u_arrmul16_and3_14 >> 0) & 0x01), ((h_u_arrmul16_fa4_13_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa2_14_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and4_14 = and_gate(((a >> 4) & 0x01), ((b >> 14) & 0x01));
|
|
h_u_arrmul16_fa4_14_xor1 = (fa(((h_u_arrmul16_and4_14 >> 0) & 0x01), ((h_u_arrmul16_fa5_13_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa3_14_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa4_14_or0 = (fa(((h_u_arrmul16_and4_14 >> 0) & 0x01), ((h_u_arrmul16_fa5_13_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa3_14_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and5_14 = and_gate(((a >> 5) & 0x01), ((b >> 14) & 0x01));
|
|
h_u_arrmul16_fa5_14_xor1 = (fa(((h_u_arrmul16_and5_14 >> 0) & 0x01), ((h_u_arrmul16_fa6_13_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa4_14_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa5_14_or0 = (fa(((h_u_arrmul16_and5_14 >> 0) & 0x01), ((h_u_arrmul16_fa6_13_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa4_14_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and6_14 = and_gate(((a >> 6) & 0x01), ((b >> 14) & 0x01));
|
|
h_u_arrmul16_fa6_14_xor1 = (fa(((h_u_arrmul16_and6_14 >> 0) & 0x01), ((h_u_arrmul16_fa7_13_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa5_14_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa6_14_or0 = (fa(((h_u_arrmul16_and6_14 >> 0) & 0x01), ((h_u_arrmul16_fa7_13_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa5_14_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and7_14 = and_gate(((a >> 7) & 0x01), ((b >> 14) & 0x01));
|
|
h_u_arrmul16_fa7_14_xor1 = (fa(((h_u_arrmul16_and7_14 >> 0) & 0x01), ((h_u_arrmul16_fa8_13_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa6_14_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa7_14_or0 = (fa(((h_u_arrmul16_and7_14 >> 0) & 0x01), ((h_u_arrmul16_fa8_13_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa6_14_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and8_14 = and_gate(((a >> 8) & 0x01), ((b >> 14) & 0x01));
|
|
h_u_arrmul16_fa8_14_xor1 = (fa(((h_u_arrmul16_and8_14 >> 0) & 0x01), ((h_u_arrmul16_fa9_13_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa7_14_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa8_14_or0 = (fa(((h_u_arrmul16_and8_14 >> 0) & 0x01), ((h_u_arrmul16_fa9_13_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa7_14_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and9_14 = and_gate(((a >> 9) & 0x01), ((b >> 14) & 0x01));
|
|
h_u_arrmul16_fa9_14_xor1 = (fa(((h_u_arrmul16_and9_14 >> 0) & 0x01), ((h_u_arrmul16_fa10_13_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa8_14_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa9_14_or0 = (fa(((h_u_arrmul16_and9_14 >> 0) & 0x01), ((h_u_arrmul16_fa10_13_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa8_14_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and10_14 = and_gate(((a >> 10) & 0x01), ((b >> 14) & 0x01));
|
|
h_u_arrmul16_fa10_14_xor1 = (fa(((h_u_arrmul16_and10_14 >> 0) & 0x01), ((h_u_arrmul16_fa11_13_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa9_14_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa10_14_or0 = (fa(((h_u_arrmul16_and10_14 >> 0) & 0x01), ((h_u_arrmul16_fa11_13_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa9_14_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and11_14 = and_gate(((a >> 11) & 0x01), ((b >> 14) & 0x01));
|
|
h_u_arrmul16_fa11_14_xor1 = (fa(((h_u_arrmul16_and11_14 >> 0) & 0x01), ((h_u_arrmul16_fa12_13_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa10_14_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa11_14_or0 = (fa(((h_u_arrmul16_and11_14 >> 0) & 0x01), ((h_u_arrmul16_fa12_13_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa10_14_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and12_14 = and_gate(((a >> 12) & 0x01), ((b >> 14) & 0x01));
|
|
h_u_arrmul16_fa12_14_xor1 = (fa(((h_u_arrmul16_and12_14 >> 0) & 0x01), ((h_u_arrmul16_fa13_13_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa11_14_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa12_14_or0 = (fa(((h_u_arrmul16_and12_14 >> 0) & 0x01), ((h_u_arrmul16_fa13_13_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa11_14_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and13_14 = and_gate(((a >> 13) & 0x01), ((b >> 14) & 0x01));
|
|
h_u_arrmul16_fa13_14_xor1 = (fa(((h_u_arrmul16_and13_14 >> 0) & 0x01), ((h_u_arrmul16_fa14_13_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa12_14_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa13_14_or0 = (fa(((h_u_arrmul16_and13_14 >> 0) & 0x01), ((h_u_arrmul16_fa14_13_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa12_14_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and14_14 = and_gate(((a >> 14) & 0x01), ((b >> 14) & 0x01));
|
|
h_u_arrmul16_fa14_14_xor1 = (fa(((h_u_arrmul16_and14_14 >> 0) & 0x01), ((h_u_arrmul16_fa15_13_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa13_14_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa14_14_or0 = (fa(((h_u_arrmul16_and14_14 >> 0) & 0x01), ((h_u_arrmul16_fa15_13_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa13_14_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and15_14 = and_gate(((a >> 15) & 0x01), ((b >> 14) & 0x01));
|
|
h_u_arrmul16_fa15_14_xor1 = (fa(((h_u_arrmul16_and15_14 >> 0) & 0x01), ((h_u_arrmul16_fa15_13_or0 >> 0) & 0x01), ((h_u_arrmul16_fa14_14_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa15_14_or0 = (fa(((h_u_arrmul16_and15_14 >> 0) & 0x01), ((h_u_arrmul16_fa15_13_or0 >> 0) & 0x01), ((h_u_arrmul16_fa14_14_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and0_15 = and_gate(((a >> 0) & 0x01), ((b >> 15) & 0x01));
|
|
h_u_arrmul16_ha0_15_xor0 = (ha(((h_u_arrmul16_and0_15 >> 0) & 0x01), ((h_u_arrmul16_fa1_14_xor1 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_ha0_15_and0 = (ha(((h_u_arrmul16_and0_15 >> 0) & 0x01), ((h_u_arrmul16_fa1_14_xor1 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and1_15 = and_gate(((a >> 1) & 0x01), ((b >> 15) & 0x01));
|
|
h_u_arrmul16_fa1_15_xor1 = (fa(((h_u_arrmul16_and1_15 >> 0) & 0x01), ((h_u_arrmul16_fa2_14_xor1 >> 0) & 0x01), ((h_u_arrmul16_ha0_15_and0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa1_15_or0 = (fa(((h_u_arrmul16_and1_15 >> 0) & 0x01), ((h_u_arrmul16_fa2_14_xor1 >> 0) & 0x01), ((h_u_arrmul16_ha0_15_and0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and2_15 = and_gate(((a >> 2) & 0x01), ((b >> 15) & 0x01));
|
|
h_u_arrmul16_fa2_15_xor1 = (fa(((h_u_arrmul16_and2_15 >> 0) & 0x01), ((h_u_arrmul16_fa3_14_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa1_15_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa2_15_or0 = (fa(((h_u_arrmul16_and2_15 >> 0) & 0x01), ((h_u_arrmul16_fa3_14_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa1_15_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and3_15 = and_gate(((a >> 3) & 0x01), ((b >> 15) & 0x01));
|
|
h_u_arrmul16_fa3_15_xor1 = (fa(((h_u_arrmul16_and3_15 >> 0) & 0x01), ((h_u_arrmul16_fa4_14_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa2_15_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa3_15_or0 = (fa(((h_u_arrmul16_and3_15 >> 0) & 0x01), ((h_u_arrmul16_fa4_14_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa2_15_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and4_15 = and_gate(((a >> 4) & 0x01), ((b >> 15) & 0x01));
|
|
h_u_arrmul16_fa4_15_xor1 = (fa(((h_u_arrmul16_and4_15 >> 0) & 0x01), ((h_u_arrmul16_fa5_14_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa3_15_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa4_15_or0 = (fa(((h_u_arrmul16_and4_15 >> 0) & 0x01), ((h_u_arrmul16_fa5_14_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa3_15_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and5_15 = and_gate(((a >> 5) & 0x01), ((b >> 15) & 0x01));
|
|
h_u_arrmul16_fa5_15_xor1 = (fa(((h_u_arrmul16_and5_15 >> 0) & 0x01), ((h_u_arrmul16_fa6_14_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa4_15_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa5_15_or0 = (fa(((h_u_arrmul16_and5_15 >> 0) & 0x01), ((h_u_arrmul16_fa6_14_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa4_15_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and6_15 = and_gate(((a >> 6) & 0x01), ((b >> 15) & 0x01));
|
|
h_u_arrmul16_fa6_15_xor1 = (fa(((h_u_arrmul16_and6_15 >> 0) & 0x01), ((h_u_arrmul16_fa7_14_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa5_15_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa6_15_or0 = (fa(((h_u_arrmul16_and6_15 >> 0) & 0x01), ((h_u_arrmul16_fa7_14_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa5_15_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and7_15 = and_gate(((a >> 7) & 0x01), ((b >> 15) & 0x01));
|
|
h_u_arrmul16_fa7_15_xor1 = (fa(((h_u_arrmul16_and7_15 >> 0) & 0x01), ((h_u_arrmul16_fa8_14_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa6_15_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa7_15_or0 = (fa(((h_u_arrmul16_and7_15 >> 0) & 0x01), ((h_u_arrmul16_fa8_14_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa6_15_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and8_15 = and_gate(((a >> 8) & 0x01), ((b >> 15) & 0x01));
|
|
h_u_arrmul16_fa8_15_xor1 = (fa(((h_u_arrmul16_and8_15 >> 0) & 0x01), ((h_u_arrmul16_fa9_14_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa7_15_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa8_15_or0 = (fa(((h_u_arrmul16_and8_15 >> 0) & 0x01), ((h_u_arrmul16_fa9_14_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa7_15_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and9_15 = and_gate(((a >> 9) & 0x01), ((b >> 15) & 0x01));
|
|
h_u_arrmul16_fa9_15_xor1 = (fa(((h_u_arrmul16_and9_15 >> 0) & 0x01), ((h_u_arrmul16_fa10_14_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa8_15_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa9_15_or0 = (fa(((h_u_arrmul16_and9_15 >> 0) & 0x01), ((h_u_arrmul16_fa10_14_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa8_15_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and10_15 = and_gate(((a >> 10) & 0x01), ((b >> 15) & 0x01));
|
|
h_u_arrmul16_fa10_15_xor1 = (fa(((h_u_arrmul16_and10_15 >> 0) & 0x01), ((h_u_arrmul16_fa11_14_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa9_15_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa10_15_or0 = (fa(((h_u_arrmul16_and10_15 >> 0) & 0x01), ((h_u_arrmul16_fa11_14_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa9_15_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and11_15 = and_gate(((a >> 11) & 0x01), ((b >> 15) & 0x01));
|
|
h_u_arrmul16_fa11_15_xor1 = (fa(((h_u_arrmul16_and11_15 >> 0) & 0x01), ((h_u_arrmul16_fa12_14_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa10_15_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa11_15_or0 = (fa(((h_u_arrmul16_and11_15 >> 0) & 0x01), ((h_u_arrmul16_fa12_14_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa10_15_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and12_15 = and_gate(((a >> 12) & 0x01), ((b >> 15) & 0x01));
|
|
h_u_arrmul16_fa12_15_xor1 = (fa(((h_u_arrmul16_and12_15 >> 0) & 0x01), ((h_u_arrmul16_fa13_14_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa11_15_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa12_15_or0 = (fa(((h_u_arrmul16_and12_15 >> 0) & 0x01), ((h_u_arrmul16_fa13_14_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa11_15_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and13_15 = and_gate(((a >> 13) & 0x01), ((b >> 15) & 0x01));
|
|
h_u_arrmul16_fa13_15_xor1 = (fa(((h_u_arrmul16_and13_15 >> 0) & 0x01), ((h_u_arrmul16_fa14_14_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa12_15_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa13_15_or0 = (fa(((h_u_arrmul16_and13_15 >> 0) & 0x01), ((h_u_arrmul16_fa14_14_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa12_15_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and14_15 = and_gate(((a >> 14) & 0x01), ((b >> 15) & 0x01));
|
|
h_u_arrmul16_fa14_15_xor1 = (fa(((h_u_arrmul16_and14_15 >> 0) & 0x01), ((h_u_arrmul16_fa15_14_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa13_15_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa14_15_or0 = (fa(((h_u_arrmul16_and14_15 >> 0) & 0x01), ((h_u_arrmul16_fa15_14_xor1 >> 0) & 0x01), ((h_u_arrmul16_fa13_15_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
h_u_arrmul16_and15_15 = and_gate(((a >> 15) & 0x01), ((b >> 15) & 0x01));
|
|
h_u_arrmul16_fa15_15_xor1 = (fa(((h_u_arrmul16_and15_15 >> 0) & 0x01), ((h_u_arrmul16_fa15_14_or0 >> 0) & 0x01), ((h_u_arrmul16_fa14_15_or0 >> 0) & 0x01)) >> 0) & 0x01;
|
|
h_u_arrmul16_fa15_15_or0 = (fa(((h_u_arrmul16_and15_15 >> 0) & 0x01), ((h_u_arrmul16_fa15_14_or0 >> 0) & 0x01), ((h_u_arrmul16_fa14_15_or0 >> 0) & 0x01)) >> 1) & 0x01;
|
|
|
|
h_u_arrmul16_out |= ((h_u_arrmul16_and0_0 >> 0) & 0x01) << 0;
|
|
h_u_arrmul16_out |= ((h_u_arrmul16_ha0_1_xor0 >> 0) & 0x01) << 1;
|
|
h_u_arrmul16_out |= ((h_u_arrmul16_ha0_2_xor0 >> 0) & 0x01) << 2;
|
|
h_u_arrmul16_out |= ((h_u_arrmul16_ha0_3_xor0 >> 0) & 0x01) << 3;
|
|
h_u_arrmul16_out |= ((h_u_arrmul16_ha0_4_xor0 >> 0) & 0x01) << 4;
|
|
h_u_arrmul16_out |= ((h_u_arrmul16_ha0_5_xor0 >> 0) & 0x01) << 5;
|
|
h_u_arrmul16_out |= ((h_u_arrmul16_ha0_6_xor0 >> 0) & 0x01) << 6;
|
|
h_u_arrmul16_out |= ((h_u_arrmul16_ha0_7_xor0 >> 0) & 0x01) << 7;
|
|
h_u_arrmul16_out |= ((h_u_arrmul16_ha0_8_xor0 >> 0) & 0x01) << 8;
|
|
h_u_arrmul16_out |= ((h_u_arrmul16_ha0_9_xor0 >> 0) & 0x01) << 9;
|
|
h_u_arrmul16_out |= ((h_u_arrmul16_ha0_10_xor0 >> 0) & 0x01) << 10;
|
|
h_u_arrmul16_out |= ((h_u_arrmul16_ha0_11_xor0 >> 0) & 0x01) << 11;
|
|
h_u_arrmul16_out |= ((h_u_arrmul16_ha0_12_xor0 >> 0) & 0x01) << 12;
|
|
h_u_arrmul16_out |= ((h_u_arrmul16_ha0_13_xor0 >> 0) & 0x01) << 13;
|
|
h_u_arrmul16_out |= ((h_u_arrmul16_ha0_14_xor0 >> 0) & 0x01) << 14;
|
|
h_u_arrmul16_out |= ((h_u_arrmul16_ha0_15_xor0 >> 0) & 0x01) << 15;
|
|
h_u_arrmul16_out |= ((h_u_arrmul16_fa1_15_xor1 >> 0) & 0x01) << 16;
|
|
h_u_arrmul16_out |= ((h_u_arrmul16_fa2_15_xor1 >> 0) & 0x01) << 17;
|
|
h_u_arrmul16_out |= ((h_u_arrmul16_fa3_15_xor1 >> 0) & 0x01) << 18;
|
|
h_u_arrmul16_out |= ((h_u_arrmul16_fa4_15_xor1 >> 0) & 0x01) << 19;
|
|
h_u_arrmul16_out |= ((h_u_arrmul16_fa5_15_xor1 >> 0) & 0x01) << 20;
|
|
h_u_arrmul16_out |= ((h_u_arrmul16_fa6_15_xor1 >> 0) & 0x01) << 21;
|
|
h_u_arrmul16_out |= ((h_u_arrmul16_fa7_15_xor1 >> 0) & 0x01) << 22;
|
|
h_u_arrmul16_out |= ((h_u_arrmul16_fa8_15_xor1 >> 0) & 0x01) << 23;
|
|
h_u_arrmul16_out |= ((h_u_arrmul16_fa9_15_xor1 >> 0) & 0x01) << 24;
|
|
h_u_arrmul16_out |= ((h_u_arrmul16_fa10_15_xor1 >> 0) & 0x01) << 25;
|
|
h_u_arrmul16_out |= ((h_u_arrmul16_fa11_15_xor1 >> 0) & 0x01) << 26;
|
|
h_u_arrmul16_out |= ((h_u_arrmul16_fa12_15_xor1 >> 0) & 0x01) << 27;
|
|
h_u_arrmul16_out |= ((h_u_arrmul16_fa13_15_xor1 >> 0) & 0x01) << 28;
|
|
h_u_arrmul16_out |= ((h_u_arrmul16_fa14_15_xor1 >> 0) & 0x01) << 29;
|
|
h_u_arrmul16_out |= ((h_u_arrmul16_fa15_15_xor1 >> 0) & 0x01) << 30;
|
|
h_u_arrmul16_out |= ((h_u_arrmul16_fa15_15_or0 >> 0) & 0x01) << 31;
|
|
return h_u_arrmul16_out;
|
|
} |