ad_filt.vhd
来自「自适应滤波器adaptive的vhdl实现的源代码。」· VHDL 代码 · 共 9 行
VHD
9 行
library IEEE;
use IEEE.STD_LOGIC_1164.all;
package ad_filt is
-- Declare constants
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;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?