Forum Discussion
Altera_Forum
Honored Contributor
15 years ago --- Quote Start --- I need to inplement this code and than use it for another code: library IEEE; use IEEE.STD_LOGIC_1164.all; package ad_filt is constant NUM_TAPS : integer := 16: constant mu : integer := 16; type sh_reg is array (0 to NUM_TAPS-1) of std_logic_vector(15 downto 0); type tmp_reg is array (0 to NUM_TAPS-1) of std_logic_vector(31 downto 0); end ad_filt; I need to implement this code above.And after that to use it in another code with command: use work.ad_filt.ALL; When I try to inplement code above I have lots of errors...My English is bad so I have difficulty to explain.