URL
https://opencores.org/ocsvn/wdsp/wdsp/trunk
Subversion Repositories wdsp
[/] [wdsp/] [trunk/] [rtl/] [vhdl/] [WISHBONE_IIR/] [.vhd.bak] - Rev 11
Go to most recent revision | Compare with Previous | Blame | View Log
library ieee;
use ieee.math_real.all;
package coeff_pkg is
constant Nb : integer := 16;
constant Q : integer := 14;
type coeff is array (Nb-1 downto 0) of integer range -(2**(Nb-1)) to (2**(Nb-1)-1);
constant h0 : coeff := (
1579,
-3067,
1579,
16384,
-31076,
14784
);
end coeff_pkg;
Go to most recent revision | Compare with Previous | Blame | View Log