📄 ad_filt.vhd
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -