上次问了下关于同步和异步复位哪个好的问题!现在有些了解了,今天编程时又发现了个问题:如下这个进程 process(s_clk,con_stop) begin if rising_edge(s_clk) then if con_stop = '0' cnt1 <=0; --值不变 elsif cnt1 = 9 then cnt1 <=0;cy1 <= '1'; else cnt1 <= cnt1+1;cy1 <= '0'; end if; end if; end process; 这个进程,看程序是同步复位--只有当时钟有跳变时才检测con_stop信号的变化,可当我在进程的首句把con_stop也做为敏感量,这样会不会变成异步复位啊???(同步复位,我看到的好象是con_stop在首句不作为敏感量) |