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

verilog 异步复位代码

时间:2018-01-17 01:21:05      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:ssi   reg   ilog   blog   复位   color   reset   always   bsp   

module reset_sync
  (input clk,
   input reset_in,
   output  reset_out);

   (* ASYNC_REG = "TRUE" *) reg reset_int = 1b1;
   (* ASYNC_REG = "TRUE" *) reg reset_out_tmp = 1b1;

   always @(posedge clk or posedge reset_in)
     if(reset_in)
       {reset_out_tmp,reset_int} <= 2b11;
     else
       {reset_out_tmp,reset_int} <= {reset_int,1b0};

   assign reset_out = reset_out_tmp;


endmodule // reset_sync

 

verilog 异步复位代码

标签:ssi   reg   ilog   blog   复位   color   reset   always   bsp   

原文地址:https://www.cnblogs.com/yssrf-possible/p/8297305.html

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