代码拉取完成,页面将自动刷新
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
use ieee.std_logic_arith.all;
entity fa_count_7 is
port(
EN:in std_logic;
CLK:in std_logic;
output:out std_logic
);
end fa_count_7;
architecture main of fa_count_7 is
signal counter: std_logic_vector(2 downto 0);
signal temp1,temp2:std_logic;
begin
process(CLK,EN)
begin
if(EN='0')then
temp1<='0';
elsif(CLK'event and CLK='1')then
if(counter="000")then
counter<="110";
temp1<=not temp1;
else
counter<=counter-1;
end if;
end if;
end process;
process(CLK,EN)
begin
if(EN='0')then
temp2<='1';
elsif(CLK'event and CLK='0')then
if(counter="011")then
temp2<=not temp2;
else
temp2<=temp2;
end if;
end if;
end process;
output<=temp1 xor temp2;
end main;
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。