代码拉取完成,页面将自动刷新
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity count_2500 is
port(
CLK_0:in std_logic;
Change_En: in std_logic;
CLK_1: out std_logic
);
end count_2500;
architecture art of count_2500 is
signal temp:integer range 0 to 2499;
signal qout: std_logic;
begin
process(CLK_0)
begin
if(CLK_0'event and CLK_0='1')then
if(temp=1)then
temp<=0;
qout<=not qout;
else
temp<=temp+1;
end if;
end if;
end process;
with Change_En select
CLK_1<= '0' when '1',
qout when others;
end art;
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。