Hello, Is there a way I can incorporate a hand wri...
# openlane
w
Hello, Is there a way I can incorporate a hand written script into the flow. For example I want it to read my script during synthesis for yosys rather than the originally defined script. Just like we have the option to configure where if we define a variable in our
config.tcl
script and it is given the priority. Is the same thing possible with the flow scripts.
a
you can modify scripts/tcl_commands/synthesis.tcl maybe?
w
I was wondering if they already included such option. for example
synthesis.tcl
reads
scripts/synth.tcl
for runing YOSYS. I was thinking along the lines that if I place a file with
synth_top_priority.tcl
in the
scripts
directory, the flow reads the top priority script.
I know I can modify the script and make such priorities but I want to avoid making changes to the original flow as much as ppossible.
a
@Wajeh ul hasan: you're probably looking for $::env(SYNTH_SCRIPT)
w
@Amr Gouhar Yes exactly. Thanks