div.vhd

来自「Vhdl实现的鼠标协议历程」· VHDL 代码 · 共 25 行

VHD
25
字号
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='1') 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 + =
减小字号Ctrl + -
显示快捷键?