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

📄 vhdl1.vhd

📁 电子课程设计数字钟的源代码
💻 VHD
字号:
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.all;
use ieee.std_logic_unsigned.all;


entity adiv is
  port(clk:in std_logic;
       rst:in std_logic;
       y:out std_logic);
end adiv;

architecture behave of adiv is 
  signal qn :std_logic_vector(20 downto 0);
begin
 process(rst,clk)
 begin
   if rst='0' then 
       qn<=(others=>'0');
   elsif clk'event and clk='1' then
     qn<=qn+1;
   end if;
 end process;
 y<=qn(2);

end behave;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -