在vhdl语言中,时钟边沿检测描述中,有几种描述方式

如题所述

在VHDL语言中,下列对时钟边沿检测描述中,错误的是( D )
A. if clk’event and clk = ‘1’then
B. if falling_edge(clk) then
C. if clk’event and clk = ‘0’ then
D.if clk’stable and not clk = ‘1’ then
温馨提示:内容为网友见解,仅供参考
无其他回答

if rising_edge(clk) then.iffalling_edge
应该是if not (clk‘stable and clk=’1‘ )then

相似回答