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

📄 fdiv.vhd

📁 电子密码锁的vhdl编程实现
💻 VHD
字号:
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_unsigned.all;
use IEEE.std_logic_arith.all;

entity fdiv is
  port(
       clk:   IN std_logic; -- 确认输入

       divout: out std_logic   
      );
end entity fdiv;

architecture behv of fdiv is
--signal 声明
 signal d : std_logic_vector(3 downto 0);
 signal o : std_logic; 
begin
 process(clk)
  begin
  if clk'event and clk = '1' then 
   if d = "1001" then d <= "0000"; o <= not o;
     else d <= d + '1';
     end if;
   divout <= o;
   end if;
 end process;
 
end behv;

⌨️ 快捷键说明

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