?? gh_filter_compensation_2db.vhd
字號:
---------------------------------------------------------------------
-- Filename: gh_filter_compensation_2dB.vhd
--
-- Description:
-- a 3rd order FIR compensation Filter -
-- with coefficients of [-.0625 1.125 -.0625]
-- has gain of 0 dB (at DC) to +2 dB (at .5 sample rate)
-- uses shift and add (uses no multipliers)
--
-- Copyright (c) 2007 by George Huber
-- an OpenCores.org Project
-- free to use, but see documentation for conditions
--
-- Revision History:
-- Revision Date Author Comment
-- -------- ---------- --------- -----------
-- 1.0 10/14/07 h LeFevre Initial revision
--
-----------------------------------------------------------------------------
library IEEE;
use IEEE.STD_LOGIC_1164.all;
use IEEE.STD_LOGIC_arith.all;
use IEEE.STD_LOGIC_signed.all;
entity gh_filter_compensation_2dB is
GENERIC (size: INTEGER :=16);
port(
clk : in STD_LOGIC;
rst : in STD_LOGIC;
ce : in STD_LOGIC:='1';
D : in STD_LOGIC_VECTOR(size-1 downto 0);
Q : out STD_LOGIC_VECTOR(size-1 downto 0)
);
end entity;
architecture a of gh_filter_compensation_2dB is
signal iD_d8 : STD_LOGIC_VECTOR(size downto 0);
signal iD_d16 : STD_LOGIC_VECTOR(size downto 0);
signal t0_A : STD_LOGIC_VECTOR(size downto 0);
signal t0_B : STD_LOGIC_VECTOR(size downto 0);
signal t1 : STD_LOGIC_VECTOR(size downto 0);
signal t2 : STD_LOGIC_VECTOR(size downto 0);
signal iQ : STD_LOGIC_VECTOR(size downto 0);
begin
Q <= iQ(size downto 1);
iD_d8 <= D(size-1) & D(size-1) & D(size-1) & D(size-1 downto 2);
iD_d16 <= D(size-1) & D(size-1) & D(size-1) & D(size-1) & D(size-1 downto 3);
process (clk,rst)
begin
if (rst = '1') then
t0_A <= (others => '0');
t0_B <= (others => '0');
t1 <= (others => '0');
t2 <= (others => '0');
iQ <= (others => '0');
elsif (rising_edge(CLK)) then
if (ce = '1') then
t0_A <= iD_d16;
t0_B <= (D & '0') + iD_d8;
t1 <= x"0" - t0_A;
t2 <= t1 + t0_B;
iQ <= t2 - t0_A;
end if;
end if;
end process;
end a;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -