div2.vhd
来自「一些很好的FPGA设计实例」· VHDL 代码 · 共 22 行
VHD
22 行
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity div2 is
port ( clki : in std_logic;
clko : inout std_logic
);
end div2;
architecture behave of div2 is
begin
process (clki)
variable temp : std_logic_vector(2 downto 0);
begin
if (clki'event and clki= '1') then
if temp = "100" then
temp := "000";
clko <= not clko;
else temp := temp+1;
end if;
end if;
end process;
end behave;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?