|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
在顶层设计的时候,在initial块里面这样设计的:
initial
begin
uvm_config_db #(virtual bk_odua_pro_if)::set (null,"uvm_test_top.env.i_agt.drv","bk_odua_pro_if",top_bkif); //odua_case0,odua_case1 instance name is uvm_test_top
uvm_config_db #(virtual bk_odua_pro_if)::set(null,
"uvm_test_top.env.o_agt.mon","bk_odua_pro_if",top_bkif); // odua_case0,odua_case1 instance name is uvm_test_top
run_test("odua_case0"); // an UVM global function,begin to initiate UVM
end
编译时报错:identifier 'run_test' has not been declared yet. If this error is not expected, please
check if you have set 'default_nettype' to none.
在平台设计中,并没有设置default_nettype为none。有知道的,请帮忙解答。 |
|