Forum Discussion
Altera_Forum
Honored Contributor
14 years agoTry this:
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
entity fir is
port(clk : in std_logic;
rst : in std_logic;
din : in signed(7 downto 0);
dout : out signed(18 downto 0));
end entity;
Cheers, Dave