题解 | #简易秒表#

简易秒表

https://www.nowcoder.com/practice/6493ca8c7b67499f918e1fa33b4cdeda

`timescale 1ns/1ns

module count_module(
    input clk,
    input rst_n,

    output reg [5:0]second,
    output reg [5:0]minute
    );
    
    
    always@(posedge clk or negedge rst_n) begin
        if(!rst_n) begin
            second <= 0;
            minute <= 0;
        end
        else if(minute<60)begin
            if(second==60begin
                minute <= minute + 1;
                second <= 1;
            end
            else begin
                minute <= minute;
                second <= second + 1;
            end
        end
        else begin
            minute <= minute;
            second <= second;
        end
    end
    
endmodule
全部评论

相关推荐

不愿透露姓名的神秘牛友
11-26 18:54
说等下个版本吧的发呆爱好者很贪睡:佬最后去了哪家呀
点赞 评论 收藏
分享
贺兰星辰:不要漏个人信息,除了简历模板不太好以外你这个个人简介是不是太夸大了...
点赞 评论 收藏
分享
评论
1
收藏
分享
牛客网
牛客企业服务