您的位置:首页 > 其它

modelsim将波形文件保存下来却不打开图形界面

2015-02-09 13:40 423 查看
vsim -c -do sim.tcl -l sim.log

波形怎么保存啊,我想把波形保存下来,但不显示,想看那个信号时在加上,不然信号全部出来了太乱了

在do文件里写
add wave -r *
run -all
exit

-------------------------------------------------------

1. vsim -c -do run.do -l vsim.log -wlf vsim.wlf
2. the contents of run.do:
log -r /*
run -all
exit -f

you can see the vsim.wlf file in your simulation directory. Next time you can load vsim.wlf into modelsim, then you can look the waveforms of all signals.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐