add32.vhd

来自「DDS信号发生器」· VHDL 代码 · 共 29 行

VHD
29
字号
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity add32 is
  port( clk:in std_logic;
        a:in  std_logic_vector(31 downto 0);
        b:buffer std_logic_vector(31 downto 0)
      );
 end add32;
architecture rt1 of add32 is
signal s:std_logic_vector(31 downto 0);
begin
 process(clk)
 variable pk:std_logic_vector(31 downto 0);
  begin
    pk:="00111111110000000000000000000000";
    if clk'event and clk='1' then
        if s>=pk then
          s<=(others=>'0');
        else
          s<=a+b;
        end if;
    end if;
   b<=s;
  end process;
end rt1;
               
               

⌨️ 快捷键说明

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