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

异步复位同步释放

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

//打俩拍
`timescale 1ns/1ns

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

//*************code***********//
reg rst_n0,rst_n1;
always@(posedge clk or negedge rst_n)
if(!rst_n)
{rst_n0,rst_n1}<=0;
else
{rst_n0,rst_n1}<={rst_n,rst_n0};
always@(posedge clk or negedge rst_n1)
if(!rst_n1)
dout<=0;
else 
dout<=d;


//*************code***********//
endmodule

全部评论

相关推荐

Hello_WordN:咱就是说,除了生命其他都是小事,希望面试官平安,希望各位平时也多注意安全
点赞 评论 收藏
分享
10-30 22:18
已编辑
毛坦厂中学 C++
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务