每日工作记录——ERROR:Simulator:793 - Unable to elaborate instantiated module work

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/moon9999/article/details/77778692

在ISE中使用ISim仿真时,运行testbench后跑通,之后点击观看波形时候报错:

ERROR:Simulator:793 - Unable to elaborate instantiated module work

原因很可能是testbench实例化的顶层文件未加实例化名称如:

work (
	.clk_high(clk_high),
	.clk_low(clk_low),
	.rst(rst)
	);

改为:

work u(
	.clk_high(clk_high),
	.clk_low(clk_low),
	.rst(rst)
	);
即可

猜你喜欢

转载自blog.csdn.net/moon9999/article/details/77778692
今日推荐