|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
各位:
我在top.sv中这样为drv配置interface:
video_if my_vdo_if(clk,rst_n);
initial beign
uvm_config_db#(virtual video_if)::set(null,"uvm_test_top.venv.i_agt.drv","vif",my_vdo_if);
end
而在driver.sv中获取interface的代码如下:
class video_driver extends uvm_driver #(video_trans);
virtual video_if vif;
.....
virtual function void build_phase(uvm_phase phase);
.....
if(!uvm_config_db#(virtual video_if)::get(this,"","video_if",vif))
`uvm_fatal("IF_FATAL",”Error for video driver to getting interface!“ );
.......
endfunction
........
endclass
可是在用irun跑的时候就出现了这个IF_FATAL,不知道我是哪个地方写错了,导致这个问题出现的呢? |
|