module u_rca8(input [7:0] a, input [7:0] b, output [8:0] u_rca8_out); wire u_rca8_ha_xor0; wire u_rca8_ha_and0; wire u_rca8_fa1_xor0; wire u_rca8_fa1_and0; wire u_rca8_fa1_xor1; wire u_rca8_fa1_and1; wire u_rca8_fa1_or0; wire u_rca8_fa2_xor0; wire u_rca8_fa2_and0; wire u_rca8_fa2_xor1; wire u_rca8_fa2_and1; wire u_rca8_fa2_or0; wire u_rca8_fa3_xor0; wire u_rca8_fa3_and0; wire u_rca8_fa3_xor1; wire u_rca8_fa3_and1; wire u_rca8_fa3_or0; wire u_rca8_fa4_xor0; wire u_rca8_fa4_and0; wire u_rca8_fa4_xor1; wire u_rca8_fa4_and1; wire u_rca8_fa4_or0; wire u_rca8_fa5_xor0; wire u_rca8_fa5_and0; wire u_rca8_fa5_xor1; wire u_rca8_fa5_and1; wire u_rca8_fa5_or0; wire u_rca8_fa6_xor0; wire u_rca8_fa6_and0; wire u_rca8_fa6_xor1; wire u_rca8_fa6_and1; wire u_rca8_fa6_or0; wire u_rca8_fa7_xor0; wire u_rca8_fa7_and0; wire u_rca8_fa7_xor1; wire u_rca8_fa7_and1; wire u_rca8_fa7_or0; assign u_rca8_ha_xor0 = a[0] ^ b[0]; assign u_rca8_ha_and0 = a[0] & b[0]; assign u_rca8_fa1_xor0 = a[1] ^ b[1]; assign u_rca8_fa1_and0 = a[1] & b[1]; assign u_rca8_fa1_xor1 = u_rca8_fa1_xor0 ^ u_rca8_ha_and0; assign u_rca8_fa1_and1 = u_rca8_fa1_xor0 & u_rca8_ha_and0; assign u_rca8_fa1_or0 = u_rca8_fa1_and0 | u_rca8_fa1_and1; assign u_rca8_fa2_xor0 = a[2] ^ b[2]; assign u_rca8_fa2_and0 = a[2] & b[2]; assign u_rca8_fa2_xor1 = u_rca8_fa2_xor0 ^ u_rca8_fa1_or0; assign u_rca8_fa2_and1 = u_rca8_fa2_xor0 & u_rca8_fa1_or0; assign u_rca8_fa2_or0 = u_rca8_fa2_and0 | u_rca8_fa2_and1; assign u_rca8_fa3_xor0 = a[3] ^ b[3]; assign u_rca8_fa3_and0 = a[3] & b[3]; assign u_rca8_fa3_xor1 = u_rca8_fa3_xor0 ^ u_rca8_fa2_or0; assign u_rca8_fa3_and1 = u_rca8_fa3_xor0 & u_rca8_fa2_or0; assign u_rca8_fa3_or0 = u_rca8_fa3_and0 | u_rca8_fa3_and1; assign u_rca8_fa4_xor0 = a[4] ^ b[4]; assign u_rca8_fa4_and0 = a[4] & b[4]; assign u_rca8_fa4_xor1 = u_rca8_fa4_xor0 ^ u_rca8_fa3_or0; assign u_rca8_fa4_and1 = u_rca8_fa4_xor0 & u_rca8_fa3_or0; assign u_rca8_fa4_or0 = u_rca8_fa4_and0 | u_rca8_fa4_and1; assign u_rca8_fa5_xor0 = a[5] ^ b[5]; assign u_rca8_fa5_and0 = a[5] & b[5]; assign u_rca8_fa5_xor1 = u_rca8_fa5_xor0 ^ u_rca8_fa4_or0; assign u_rca8_fa5_and1 = u_rca8_fa5_xor0 & u_rca8_fa4_or0; assign u_rca8_fa5_or0 = u_rca8_fa5_and0 | u_rca8_fa5_and1; assign u_rca8_fa6_xor0 = a[6] ^ b[6]; assign u_rca8_fa6_and0 = a[6] & b[6]; assign u_rca8_fa6_xor1 = u_rca8_fa6_xor0 ^ u_rca8_fa5_or0; assign u_rca8_fa6_and1 = u_rca8_fa6_xor0 & u_rca8_fa5_or0; assign u_rca8_fa6_or0 = u_rca8_fa6_and0 | u_rca8_fa6_and1; assign u_rca8_fa7_xor0 = a[7] ^ b[7]; assign u_rca8_fa7_and0 = a[7] & b[7]; assign u_rca8_fa7_xor1 = u_rca8_fa7_xor0 ^ u_rca8_fa6_or0; assign u_rca8_fa7_and1 = u_rca8_fa7_xor0 & u_rca8_fa6_or0; assign u_rca8_fa7_or0 = u_rca8_fa7_and0 | u_rca8_fa7_and1; assign u_rca8_out[0] = u_rca8_ha_xor0; assign u_rca8_out[1] = u_rca8_fa1_xor1; assign u_rca8_out[2] = u_rca8_fa2_xor1; assign u_rca8_out[3] = u_rca8_fa3_xor1; assign u_rca8_out[4] = u_rca8_fa4_xor1; assign u_rca8_out[5] = u_rca8_fa5_xor1; assign u_rca8_out[6] = u_rca8_fa6_xor1; assign u_rca8_out[7] = u_rca8_fa7_xor1; assign u_rca8_out[8] = u_rca8_fa7_or0; endmodule