aryap
05/14/2022, 8:55 PMscripts/synth_top.tcl
; i didn’t see an existing solution. is there a better way?
if { [info exists ::env(SYNTH_PARAMETERS) ] } {
foreach define $::env(SYNTH_PARAMETERS) {
set param_and_value [split $define "="]
lassign $param_and_value param value
chparam -set $param $value $vtop
}
}
synth.tcl
Matt Liberty
05/14/2022, 10:10 PM