对按键计数,编译不通过!!
module dc_counter(rstn,up,down,dout);
input rstn;
input up;
input down;
output[8:0] dout;
reg[8:0] dout_r;
reg[3:0]cnt;
always@(posedge up or negedge rstn)//计数范围50~450
begin
if(! rstn)
dout_r<=9'd450;
else
begin
if(dout_r>=9'd449)
dout_r<=450;
else
dout_r<=dout_r+1;
end
end
always@(posedge down or negedge rstn)
begin
if(! rstn)
dout_r<=9'd450;
else
begin
if(dout_r<=9'd50)
dout_r<=9'd50;
else
dout_r<=dout_r-1;
end
end
assign dout=dout_r;
endmodule
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
一周热门 更多>