题解 | #时钟分频(偶数)#

时钟分频(偶数)

https://www.nowcoder.com/practice/49a7277c203a4ddd956fa385e687a72e

`timescale 1ns/1ns

module even_div
    (
    input     wire rst ,
    input     wire clk_in,
    output    wire clk_out2,
    output    wire clk_out4,
    output    wire clk_out8
    );
//*************code***********//
    reg [3:0]   bit_cnt;

always@(posedge clk_in or negedge rst)
    if(!rst)
        bit_cnt <=  4'd3;
    else    if(bit_cnt == 4'd7)
        bit_cnt <=  4'd0;
    else
        bit_cnt <=  bit_cnt + 1'b1;

assign  clk_out2 = ~bit_cnt[0];
assign  clk_out4 = ~bit_cnt[1];
assign  clk_out8 = bit_cnt[2];

//*************code***********//
endmodule

全部评论

相关推荐

05-20 13:59
门头沟学院 Java
米黑子米黑子:你这个成绩不争取下保研?
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务