|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
module count10(cin,clk,cout,qout);
input cin,clk;
output [3:0] qout;
output cout;
reg [3:0]qout;
always @(posedge clk)
begin
if(cin)
begin
if(qout[3:0]==9) qout[3:0]=0;
else qout[3:0]=qout[3:0]+1;
end
end
assign cout=((qout[3:0]==9)&cin)?1:0;
endmodule
计数测试进位 加一 |
|