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

异步复位同步释放

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

全部评论

相关推荐

08-14 11:30
门头沟学院 Java
失去了成为米孝子的机会
投递小米集团等公司10个岗位
点赞 评论 收藏
分享
牛客84809583...:那个成功参与奖就别放了,参加就有
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

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