|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
大家好!!
我想用VCS生成saif文件(Generate a backward saif file),并使用primepower进行功耗估计,现在生成saif文件(Generate a backward saif file)时出现问题,我的流程如下:
1、In DC(Generate a forward saif file):
rtl2saif -output $base_path/hao_output/cnt_updown_fw.saif -design updown_counter
lib2saif -output $base_path/hao_output/lib_fw.saif fast_1v32c0.db
It is right!!
2、use vcs to simulate the testbench :
我的测试模块名tb_cnt_updown。。。。
always begin
#2601000 $finish;
end
initial begin
$set_gate_level_monitoring ("rtl_on");
$read_lib_saif ("./hao_output/lib_fw.saif");
$read_rtl_saif ("./hao_output/cnt_updown_fw.saif" , tb_cnt_updown.M1);
$set_toggle_region(M1);
$toggle_start();
#2001000;
$toggle_stop();
$toggle_report("updown_counter.saif",1.0e-9,tb_cnt_updown);
end
任务 $toggle_report 出现问题,我试过了,屏蔽改任务则VCS运行无问题,否则就会报错,,,,我的VCS版本是 Version X-2005.06 。。。请问各位高手,错误出在哪里呢,,,,
|
|