题解 | #异步复位同步释放#

异步复位同步释放

https://www.nowcoder.com/practice/9b892b6f75954267b4574b042f8a8d6a

`timescale 1ns/1ns

module ali16(
input clk,
input rst_n,
input d,
output reg dout
 );

//*************code***********//
reg rst_0,rst_1;
    always@(posedge clk or negedge rst_n)begin
        if(!rst_n)begin
            rst_0<=0;
            rst_1<=0;
        end
        else begin
            rst_0<=rst_n;
            rst_1<=rst_0;
        end
    end

always@(posedge clk or negedge rst_1)begin
    if(!rst_1)
        dout<=0;
    else
        dout<=d;
end
//*************code***********//
endmodule

全部评论

相关推荐

头像
07-26 14:05
门头沟学院 Java
欧贺桥:哈哈哈哈哈笑死我了
点赞 评论 收藏
分享
08-05 18:14
门头沟学院 Java
小花的沉默:是学历厂没错啊,学历太高了不要
投递小鹏汽车等公司10个岗位
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

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