debugzbunny
Newbie level 2
synopsys tcl
I was trying to read multiple files in primetime.
read_file -format verilog [list ${CLOCK_CELLS_DIR}/XC0*/XC2*.final.v]
But this doesn't work.?? How do I use wildcards for unix files in primetime?
Added after 1 hours 20 minutes:
Found the answer:
read_file -format verilog [glob ${CLOCK_CELLS_DIR}/XC0*/XC2*.final.v]
I was trying to read multiple files in primetime.
read_file -format verilog [list ${CLOCK_CELLS_DIR}/XC0*/XC2*.final.v]
But this doesn't work.?? How do I use wildcards for unix files in primetime?
Added after 1 hours 20 minutes:
Found the answer:
read_file -format verilog [glob ${CLOCK_CELLS_DIR}/XC0*/XC2*.final.v]