马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
做了个小实验,
module test (
input clk ,
input resetn ,
input a ,
input b ,
output reg c
);
always @(posedge clk or negedge resetn)
if(!resetn)
c <= 1'b0;
else
c <= a & b;
endmodule
Loading verilog file '/digital/jhgao/test_pt/src/test.v'
Error: Expected ',' or ')' but found 'c'
at line 3 in '/digital/jhgao/test_pt/src/test.v'. (SVR-4)
Information: Verilog read failed. (SVR-2)
0
居然连文件都读不进去 这么简单的代码 问题定位中 |