build/colognechip/colognechip: add missing p_r option (-cCP)

This commit is contained in:
Gwenhael Goavec-Merou 2024-02-28 17:17:42 +01:00
parent 83c1adbc94
commit 3d9db91387
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ class CologneChipToolchain(GenericToolchain):
# yosys call
script_contents += self._yosys.get_yosys_call("script") + fail_stmt
# p_r call
script_contents += "p_r -ccf {build_name}.ccf -A 1 -i {build_name}_synth.v -o {build_name} -lib ccag\n".format(
script_contents += "p_r -ccf {build_name}.ccf -cCP -A 1 -i {build_name}_synth.v -o {build_name} -lib ccag\n".format(
build_name = self._build_name)
script_file = "build_" + self._build_name + script_ext