-- +-----------------------------+ -- | designer : Tim Pagden | -- | opened: 02 Feb 1994 | -- +-----------------------------+ library vfp; library matrix; package fir_32_coeff_table is use vfp.bus_class.all; use matrix.matrix_class.all; constant coeff_array: ulogic_8_vector(31 downto 0) := ( "00000000", "00000000", "00000000", "00000000", "00000000", "00000000", "00000000", "00000000", "00000000", "00000000", "00000000", "00000000", "00000000", "00000000", "00000000", "01111111", "01111111", "00000000", "00000000", "00000000", "00000000", "00000000", "00000000", "00000000", "00000000", "00000000", "00000000", "00000000", "00000000", "00000000", "00000000", "00000000" ); constant coeff_single_array: single_vector(31 downto 0) := ( 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 32.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ); end fir_32_coeff_table;