#236 SYNTH_ADDER_TYPE=RCA also requires SYNTH_READ...
# openlane
g
#236 SYNTH_ADDER_TYPE=RCA also requires SYNTH_READ_BLACKBOX_LIB=1 Issue opened by antonblanchard Commit a421bf6 ("Add Ripple carry adder/Full adder mapping to yosys (#228)") adds
SYNTH_ADDER_TYPE
. I tried the
RCA
option but it fails with:
Copy code
ERROR: Module `\sky130_fd_sc_hd__fa_1' referenced in module `\adder' in cell `$add$/openLANE_flow/designs/adder/src/adder.v:20$2.stage[0].FA' is not part of the design.
Adding access to the standard cells with
set ::env(SYNTH_READ_BLACKBOX_LIB) 1
fixes it. Since the design itself is not using standard cells this is a bit confusing. The
FA
doesn't have this issue, I'm guessing because we do that mapping later on. efabless/openlane