集成电路技术分享

 找回密码
 我要注册

QQ登录

只需一步,快速开始

搜索
查看: 1587|回复: 0

问????????

[复制链接]
encounter 发表于 2010-6-28 01:09:20 | 显示全部楼层 |阅读模式
本帖最后由 fpgaw 于 2010-7-7 05:36 编辑

v4 的DSP48s消耗什么资源?仅仅乘法消耗DSP48s 吗?

综合的时候参数设置选中DSP48s,模块1显示DSP48s为2

模块1需要例化10次得到模块2,此时消耗DSP48s为20

模块2和其他模块一起再次例化12次,此时消耗DSP48s为20*12=240消耗太多!!!

想改进模块1,使其消耗DSP48s 为0?怎么做?

模块1:
process(clk62m,reset)
begin
   if reset='0' then
    d_q <= (others => '0');
  elsif(rising_edge(clk62m))then
    if d_p='1' then
    d_q <= -d_in;
   else
    d_q <= d_in;
   end if;
  end if;
end process;

process(clk62m,reset)
begin
       if reset='0' then
        flag<='0';
                sum<=(others => '0');
        elsif(falling_edge(clk62m))then
            if(flag='1')then   
                sum<=sum+d_q;      
            else
               sum<=(others => '0');
            end if;
        
            if(clk5k='1')then
                flag<='1';
             sum<=sxt(d_q,30);
            end if;
        end if;
end process;

process(clk62m,reset)
begin
       if reset='0' then
                d_out1 <= (others => '0');
        elsif(rising_edge(clk62m))then
          d_out1<=d_q;
        end if;
end process;

process(clk5k,reset)
begin
       if reset='0' then
                d_out2 <= (others => '0');
        elsif(rising_edge(clk5k))then
          d_out2<=sum(29 downto 12);        
        end if;                  
end process;
您需要登录后才可以回帖 登录 | 我要注册

本版积分规则

关闭

站长推荐上一条 /1 下一条

QQ|小黑屋|手机版|Archiver|fpga论坛|fpga设计论坛 ( 京ICP备20003123号-1 )

GMT+8, 2024-11-27 11:06 , Processed in 0.058367 second(s), 20 queries .

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表