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

时钟分频(偶数)

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

````timescale 1ns/1ns
//注意clk_out4的翻转
module even_div
    (
    input     wire rst ,
    input     wire clk_in,
    output    wire clk_out2,
    output    wire clk_out4,
    output    wire clk_out8
    );
//*************code***********//
    reg[1:0]cnt;
    reg     clk_out2_tmp;
    reg     clk_out4_tmp;
    reg     clk_out8_tmp;
    always @(posedge clk_in or negedge rst)begin
        if(~rst)
            cnt <= 0;
        else  
            cnt <= cnt + 1'b1;
    end
    
    always @(posedge clk_in or negedge rst)begin
        if(~rst)
            clk_out2_tmp <= 0;
        else
            clk_out2_tmp <= ~clk_out2_tmp;
    end
    
    always @(posedge clk_in or negedge rst)begin
        if(~rst)begin
            clk_out4_tmp <= 0;
            clk_out8_tmp <= 0;
        end else begin
            if(cnt == 2'd0)begin
                clk_out4_tmp <= ~clk_out4_tmp;
                clk_out8_tmp <= ~clk_out8_tmp;
            end else if(cnt == 2'd2)
                clk_out4_tmp <= ~clk_out4_tmp;
        end
    end
    
    assign clk_out2 = clk_out2_tmp;
    assign clk_out4 = clk_out4_tmp;
    assign clk_out8 = clk_out8_tmp;
//*************code***********//
endmodule
全部评论

相关推荐

10-14 23:01
已编辑
中国地质大学(武汉) Java
CUG芝士圈:虽然是网上的项目,但最好还是包装一下,然后现在大部分公司都在忙校招,十月底、十一月初会好找一些。最后,boss才沟通100家,别焦虑,我去年暑假找第一段实习的时候沟通了500➕才有面试,校友加油
点赞 评论 收藏
分享
过往烟沉:我说什么来着,java就业面就是广!
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务