码迷,mamicode.com
首页 > 其他好文 > 详细

异步复位和同步复位

时间:2018-03-24 20:37:13      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:alt   div   module   pos   class   begin   none   log   post   

异步复位实例:

技术分享图片
 1 module async_rst (
 2     input       din,
 3     input       clk,
 4     input       rst_n,
 5     
 6     output reg  dout
 7 );
 8 
 9     always @ (posedge clk or negedge rst_n)
10     begin
11         if (!rst_n)
12             dout <= 1b0;
13         else
14             dout <= din;
15     end
16 
17 endmodule
异步复位

技术分享图片

 

同步复位实例:

技术分享图片
 1 module sync_rst (
 2     input       din,
 3     input       clk,
 4     input       rst_n,
 5     
 6     output reg  dout
 7 );
 8 
 9     always @ (posedge clk)
10     begin
11         if (!rst_n)
12             dout <= 1b0;
13         else
14             dout <= din;
15     end
16 
17 endmodule
同步复位

技术分享图片

异步复位与同步复位比较:

    同步复位更耗资源,异步复位存在亚稳态。

异步复位和同步复位

标签:alt   div   module   pos   class   begin   none   log   post   

原文地址:https://www.cnblogs.com/yllinux/p/8640871.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!