马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
在用Modeisim10.2.c编译interface.sv的时候,提示modport为语法错误,求大神答疑解惑。 报错提示如下:** Error: F:\test\interface.sv(23): near "modport": syntax error, unexpected modport, expecting property or sequence or let interface trans_io(input bit clk_pcs);
logic rst_n ;
logic [7:0] txc ;
logic [63:0] txd ;
logic i_cpu_tx_error_rst_n;
logic [256:0] o_trans_257 ;
logic o_vld_257 ;
logic [10:0] o_cpu_tx_error_count;
clocking cb @(posedge clk_pcs);
default input #1 output #1 ;
output rst_n ;
output txc ;
output txd ;
output i_cpu_tx_error_rst_n;
input o_trans_257 ;
input o_vld_257 ;
input o_cpu_tx_error_count;
modport TB(clocking cb, output rst_n);
endinterface
|