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

📄 3.txt

📁 quartusii 三分频电路
💻 TXT
字号:
我给出 一个VHDL的三分频例子
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;

--  Uncomment the following lines to use the declarations that are
--  provided for instantiating Xilinx primitive components.
--library UNISIM;
--use UNISIM.VComponents.all;

entity division3 is
  port (clk: in std_logic;
        out1: out std_logic);
end division3;

architecture Behavioral of division3 is
signal division2,division4 :std_logic:='0';
signal temp1,temp2:integer range 0 to 10;

begin
p1:process(clk)
  begin
   if rising_edge(clk) then
    temp1 <=temp1+1;

    if temp1=1 then
     division2<='1';
    elsif temp1=2 then
       division2<='0';
     temp1<=0;
    end if;
      end if;
end process p1;

p2:process(clk)
  begin
  if clk'event and clk='0' then
    temp2<=temp2+1;
     if temp2=1 then
  
      division4<='1';
     elsif temp2=2 then
      division4<='0';
      temp2<=0;
    end if;
    end if;
   end process p2;

p3:process(division2,division4)
begin
   out1<=division2 or division4;
end process p3;

end Behavioral;

我给出 一个VHDL的三分频例子
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;

--  Uncomment the following lines to use the declarations that are
--  provided for instantiating Xilinx primitive components.
--library UNISIM;
--use UNISIM.VComponents.all;

entity division3 is
  port (clk: in std_logic;
        out1: out std_logic);
end division3;

architecture Behavioral of division3 is
signal division2,division4 :std_logic:='0';
signal temp1,temp2:integer range 0 to 10;

begin
p1:process(clk)
  begin
   if rising_edge(clk) then
    temp1 <=temp1+1;

    if temp1=1 then
     division2<='1';
    elsif temp1=2 then
       division2<='0';
     temp1<=0;
    end if;
      end if;
end process p1;

p2:process(clk)
  begin
  if clk'event and clk='0' then
    temp2<=temp2+1;
     if temp2=1 then
  
      division4<='1';
     elsif temp2=2 then
      division4<='0';
      temp2<=0;
    end if;
    end if;
   end process p2;

p3:process(division2,division4)
begin
   out1<=division2 or division4;
end process p3;

end Behavioral;

⌨️ 快捷键说明

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