扩展为位源程序libraryieee;useieeestd logic all
雷达中心控制器的主要任务 1.决定雷达在一定时间内必须执行的工作方式 2.对不同雷达单元发准备指令以完成计划任务 3.完成性能监视和故障检测 4.作为操作人员与雷达系统各单元的人机接口 use ieee.std_logic_arith.all; use ieee.std_logic_signed.all; use work.coeffs.all; entity fir is port(clk,reset:in std_logic; sample:in signed(7 downto 0); result:out signed(16 downto 0)); end fir; architecture beh of fir is begin main:process(clk,reset) type shift_arr is array (4 downto 0) of signed (7 downto 0); variable tmp,old:signed (7 downto 0); variable pro:signed (16 downto 0); variable acc: signed (16 downto 0); variable shift:shift_arr; begin if reset=1 then result=(others=0); for i in 0
原创力文档

文档评论(0)