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

📄 divider.vhd

📁 全是FPGA的例子 对大家应该有好处 大家赶快下把 知识不等人
💻 VHD
字号:
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.all;

entity divider is
port(div_in:in std_logic;
     div_cnt:in unsigned(7 downto 0);
     div_out:out std_logic
     );
end divider;

architecture behav of divider is
begin
process
variable cnt:unsigned(7 downto 0);
begin
wait until div_in'event and div_in='1';
    cnt:=cnt+1;
    if cnt=div_cnt then
     div_out<='1';
     cnt:="00000000";
    else div_out<='0';
    end if;
end process;
end behav;

⌨️ 快捷键说明

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