|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
always @(posedge clk)
begin : rst_proc
if (sync_por_n == 0)
begin
rst_first <= 0; // in first cycle
old_rst_in_n <= rst_in_n; // save current state
sync_rst_n <= rst_in_n; // follow rst_in_n state
end
else
begin
// check rst_in state in c4:
if (t_cycle == `c4)
begin
if (((old_rst_in_n == 1) && (rst_in_n == 0)) |
((old_rst_in_n == 0) && (rst_in_n == 1)))
begin
// rst_in goes low or high:
rst_first <= 1;
end
// action only in second cycle:
if (rst_first == 1)
begin
if (rst_in_n == 0) // still applied ?
begin
sync_rst_n <= 0;
rst_first <= 0;
end
else if (rst_in_n == 1)
begin
sync_rst_n <= 1;
rst_first <= 0;
end
end
old_rst_in_n <= rst_in_n; // save current state
end
end
end // rst_proc
感觉不对阿,这里面rst_in_n是芯片外面进来的信号,是异步信号.old_rst_in_n是时钟rst_in_n打了一拍产生的信号,如果rst_in_n的下降沿来得时候刚好和时钟的上升沿对齐 那么old_rst_in_n就可能是亚稳态信号,0,1不确定,rst_first是对old_rst_in_n和rst_in_n异或信号的同步,那么rst_first这时也有可能是亚稳态信号,0,1不确定.那若是old_rst_in_n和rst_first都稳定在0,那sync_rst_n不就检测不到rst_in_n的下降沿了吗?也就是sync_rst_n不就等于不了0了吗?这段代码是权威公司的正规代码,不知道是怎么回事啊?望高手帮我解释一下啊?谢谢? |
|