|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
在用NCverilog做覆盖率测试时,遇到一个奇怪的问题,即:在一个模块中多次调用另外一个模块的情况(例如:module a(....);.....B B_1(...); B B_2(..); B B_3(...);...endmodule),加coverage命令产生dgn文件时,产生如下错误:
ncsim: *internal* (genuine access violation (0-9affb08:2)).
ncsim: *internal* (genuine access violation (0-57e153:2)).
Please contact Cadence Design Systems about this problem
and provide enough information to help us reproduce it.
ncsim: *internal* (NO ERROR for error code 0).
ncverilog: *E,SIMERR: Error during Simulation (status 1), exiting.
/****************************/
我加的coverage configuration file如下:
select_coverage -block -expr -module *...
set_glitch_strobe 5ns
set_instance_context A
set_hit_count_limit 4
set_implicit_block_scoring -on -both *
set_assign_scoring
/***************************/
TCL文件如下:
coverage -setup
coverage -code
run
exit
/**************************/
在此,请教大家,其原因是什么?该如何解决?谢谢大家乐 |
|