⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 div.vhd

📁 Vhdl实现的鼠标协议历程
💻 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='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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -