VHDL程序解释,很短的一段,说是同步化电路。。不懂什么意思,求高手指点
libraryieee;useieee.std_logic_1164.all;entitysyisport(sin,clk:instd_logic;sout:outstd...
library ieee;
use ieee.std_logic_1164. all;
entity sy is
port(
sin,clk :in std_logic;
sout :out std_logic
);
end sy;
architecture behave of sy is
signal q0,q1: std_logic;
begin
sout<=q0 and (not(q1));
process(clk)
begin
if(clk'event and clk='1') then
q0<=sin;
q1<=q0;
end if;
end process;
end behave; 展开
use ieee.std_logic_1164. all;
entity sy is
port(
sin,clk :in std_logic;
sout :out std_logic
);
end sy;
architecture behave of sy is
signal q0,q1: std_logic;
begin
sout<=q0 and (not(q1));
process(clk)
begin
if(clk'event and clk='1') then
q0<=sin;
q1<=q0;
end if;
end process;
end behave; 展开
1个回答
2013-03-08
浙江启扬智能科技有限公司
2022-05-05 广告
2022-05-05 广告
选择arm开发板,可以参考一下几个点:1、确定一种CPU,去了解其核心架构,CPU资源有哪些,一些芯片厂商都会有说明的,可以去它们网站上看看;2、确定要使用什么操作系统,比如Linux啊,安卓这些等等;3、确定开发或者学习要用的哪些接口,比...
点击进入详情页
本回答由浙江启扬智能科技有限公司提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询