📄 count64.vhd
字号:
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
entity count64 is
Port ( sysclk : in std_logic;
reset : in std_logic;
clkout : out std_logic);
end count64;
architecture Behavioral of count64 is
signal count : std_logic_vector(6 downto 0);
begin
process (reset,sysclk)
begin
if (reset='0') then
count <= (others=>'0');
elsif (sysclk'event and sysclk='1') then
count <= count+'1';
end if;
end process;
clkout <= count(6);
end Behavioral;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -