Questa Sim版本:2021.01
问题描述
在仿真中为防止信号被优化,会在modelsim仿真的do文件中使用vsim -novopt项,但是Questa Sim已经不支持,并会提示以下信息。所以要观察信号第一步先要解决该问题。
Error (suppressible): (vlog-12110) All optimizations are disabled because the -novopt option is in effect. This will cause your simulation to run very slowly. If you are using this switch to preserve visibility for Debug or PLI features, please see the User's Manual section on Preserving Object Visibility with vopt. -novopt option is now deprecated and will be removed in future releases.
解决方案:
(1)在Simulate -> Design Optimization...中,选择Visibility中,选择
Apply full visibility to all modules。
当然也可以选择Customized visibility选项把不希望被优化的文件添加起来,必须全部不优化会增加仿真时间的。
但是这样还不够,因为在Object中依然看不到信号。
(2)在.do 文件的vsim后面添加 -voptargs=+acc
vsim -t ps -voptargs=+acc work.TI60_MIPI_csi_tb
经过以上两步操作之后,就可以看到object中的信号,然后添加到wave中就可以观察了。
审核编辑:汤梓红
全部0条评论
快来发表一下你的评论吧 !