Files
FPGA_Config/FPGA_by_Fredi/precmd.tcl
2021-07-11 19:37:07 +02:00

14 lines
342 B
Tcl

#
# execute each of a list of tcl scripts
#
# meant to be used with the PRE_FLOW_SCRIPT_FILE quartus assignment
# that allows to evaluate a tcl script before analysis starts
set precmd_list { "make_datetime.tcl" }
set script [info script]
foreach item $precmd_list {
post_message "$script: execute $item"
exec quartus_sh -t $item
}