题解 | #占空比50%的奇数分频#

占空比50%的奇数分频

https://www.nowcoder.com/practice/ccfba5e5785f4b3f9d7ac19ab13d6b31

`timescale 1ns/1ns

module odo_div_or
   (
    input    wire  rst ,
    input    wire  clk_in,
    output   wire  clk_out7
    );

//*************code***********//
reg [2:0] cnt;
reg   out;
always @(clk_in or negedge rst)
begin
if(!rst)
begin
cnt<=3'd1;
end
else
begin
cnt<= (cnt== 3'd7) ? 3'd1 : cnt+3'd1;
end
end

always @(clk_in or negedge rst)
begin
if(!rst)
begin
out=1'b0;
end
else
begin
out= cnt==7 ? ~out : out;
end
end


assign clk_out7=out;
//*************code***********//
endmodule

全部评论

相关推荐

10-24 11:10
山西大学 Java
若梦难了:哥们,面试挂是很正常的。我大中厂终面挂,加起来快10次了,继续努力吧。
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务