3/6交替计数器(奕斯伟数字IC实习面试)

//面试官要求写出3和6交替的计数器,第一次计数3,第二次计数6,这样交替计数


module cnt(
    input clk_80MHz,
    input rst_n
    );
//3和6的计数器
reg [2:0] cnt;
reg [1:0] c_state, n_state;
parameter state_0 = 0;
parameter state_1 = 1;

always @(posedge clk_80MHz&nbs***bsp;negedge rst_n) begin
    if (!rst_n) begin
        c_state <= state_0;
    end
    else begin
        c_state <= n_state;
    end
end


always @(*) begin
    case (c_state)
        state_0 : n_state = (cnt == 3'd3) ? state_1 : state_0;
        state_1 : n_state = (cnt == 3'd6) ? state_0 : state_1;
        default: ;
    endcase
end


always @(posedge clk_80MHz&nbs***bsp;negedge rst_n) begin
    if (!rst_n) begin
        cnt <= 3'd0;
    end
    case (c_state)
        state_0 : begin
            if (cnt == 3'd3) begin
                cnt <= 3'd0;
            end
            else begin
                cnt <= cnt + 1'b1;
            end
        end
        state_1 : begin
            if (cnt == 3'd6) begin
                cnt <= 3'd0;
            end
            else begin
                cnt <= cnt + 1'b1;
            end
        end
        default: ;
    endcase
end


endmodule

#数字IC实习生#
全部评论
状态机是不是有点麻烦,可以直接用一个flag 吗
点赞 回复 分享
发布于 2022-07-10 21:46
请问这是现场写吗?
点赞 回复 分享
发布于 2022-11-06 12:58 陕西

相关推荐

10-07 23:57
已编辑
电子科技大学 Java
八街九陌:博士?客户端?开发?啊?
点赞 评论 收藏
分享
2 15 评论
分享
牛客网
牛客企业服务