|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
代码如下:
`timescale 1ns/100ps
module Counter_36(//input
Clk, ENT, reset, EN,
//output
Cout
);
input Clk, reset, EN, ENT;
output [5:0] Cout;
reg [5:0] Cout;
always @ (posedge Clk or posedge ENT or negedge reset)
if(!reset)
#0.1 Cout <= 6'b000000;
else if(EN & (Cout<6'b100011))
#0.2 Cout <= Cout+1;
else if(EN & (Cout==6'b100011))
#0.2 Cout <=6'b0;
endmodule
这个是代码,在综合过程中,出现了一下错误,
the expression in the reset condition of the 'if' statement in this 'always' block can only be a simple identifier or its negation.
这是Design Compiler模拟结果显示的错误。
谢谢,毕设急用! |
|