|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
前几天,师弟们笔试了一道题,实现4.5分频
我的方案,上下沿都计数,最后实现的代码如下,代码风格可能不好!
大家一起品评下,是否还有好的方案!
希望拍转!
module Div(clk,rst,divout);
input clk,rst;
output divout;
reg[3:0] counter;
always @(posedge clk) begin
if (rst)
counter=0;
else if(counter==8)
counter=0;
else
counter=counter+1;
end
always @(negedge clk)
begin
if (rst)
counter=0;
else if(counter==8)
counter=0;
else
counter=counter+1;
end
assign divout =(counter[2]==1)?1:0;
endmodule |
|