作为 modelsim 用户,我习惯于在我的 do-file 中编写类似以下几行的内容。
when -label supersignal {supersignal == '1'} {
stop ;
puts "blah"
do_something
}
run -all
在modelsim中运行模拟,一旦我的VHDL-Signalsupersignal
值为'1',开始的块stop;
就会被执行。
(cadence) ncsim 是否有类似的 tcl 命令?我正在寻找一个可以在调用时在我的 dofile 中使用的命令ncsim -input dofile.do
。当我不想只停止模拟,还要执行任何 tcl 命令时。