我正在尝试为isim中的一些模拟编写一个tcl脚本。该脚本将运行两个嵌套循环并在每次迭代中生成一个文件。当使用此程序运行模拟时,模拟器会生成错误:
TCL batch file "D:...subbyte.tcl" encountered an error in line 2. Simulator is exiting.
但生成并保存所有输出文件。我对它完全感到困惑。 感谢您提前提供任何帮助!
run 100 ns
for {set i 0} { $i<1} {incr i} {
for {set j 0} { $j<256} {incr j} {
saif open -scope uut -file "saifsubbyte $i$j .saif" -allnets
run 1 ns
saif close
run 19 ns
}
}