题解 | #自动贩售机2#

自动贩售机2

https://www.nowcoder.com/practice/298dec1c3dce45c881f3e53e02558828

//cnt及时返回0
`timescale 1ns/1ns

module seller2(
	input wire clk  ,
	input wire rst  ,
	input wire d1 ,
	input wire d2 ,
	input wire sel ,
	
	output reg out1,
	output reg out2,
	output reg out3
);
//*************code***********//
    reg[2:0] cnt;
    always@(posedge d1) cnt <= cnt + 1;
    always@(posedge d2) cnt <= cnt + 2;
    always@(negedge rst or posedge clk)begin
        if(~rst)begin
            cnt <= 0;
            out1 <= 0;
            out2 <= 0;
            out3 <= 0;
        end
        else if(sel == 0)begin	//饮料一
            if(cnt >= 3)begin
                out1 <= 1;
                cnt <= 0;
                out3 <= cnt - 3;
            end
            else begin
                out1 <= 0;
                out2 <= 0;
                out3 <= 0;
            end
        end
        else begin	//饮料二
            if(cnt >= 5)begin
                out2 <= 1;
                cnt <= 0;
                out3 <= cnt - 5;
            end
            else begin
                out1 <= 0;
                out2 <= 0;
                out3 <= 0;
            end
        end
    end
    
//*************code***********//
endmodule

全部评论

相关推荐

我已成为0offer的糕手:别惯着,胆子都是练出来的,这里认怂了,那以后被裁应届被拖工资还敢抗争?
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
10-05 10:13
已编辑
HHHHaos:让这些老登来现在秋招一下,简历都过不去
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务