|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
我定义了一个带参数的接口,接口中的参数写的是"BLUE",在top中例化了三次接口,参数分别为“BLUE”,“GREEN”,"RED",blue可以过,后两个参数都报下面的错误,求大神解决!!
Error-[ICTTFC] Incompatible complex type usage
top_tb.sv, 66
Incompatible complex type usage in task or function call.
The following expression is incompatible with the formal parameter of the
function. The type of the actual is 'interface encode_if#("GREEN")', while
the type of the formal is 'virtual interface encode_if#("BLUE")'.
Expression: top_tb.ch1_if
Source info: uvm_config_db#(encode_if#("BLUE"))::set(null,
"uvm_test_top.drv1", "vif", top_tb.ch1_if) |
|