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

📄 phase_add.vhd

📁 在quartus软件下用VHDL语言实现DDS
💻 VHD
字号:
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;

entity phase_add is
port(origin:in std_logic_vector(11 downto 0);
     phase :in std_logic_vector(11 downto 0);
     result:out std_logic_vector(11 downto 0)
     );
end phase_add;

architecture behavior of phase_add is
begin
  process (phase,origin)
    begin
      result<=origin+phase;
    end process;
end behavior;

⌨️ 快捷键说明

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