ISE FPGA Number of Slice LUTs 超了

2019-03-25 08:36发布

综合后警告 More than 100% of Device resources are used

是Number of Slice LUTs超了

这个警告严重吗?怎么解决呢? 此帖出自小平头技术问答
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
3条回答
timdong
1楼-- · 2019-03-25 10:51
< / 问题解决了,是RAM的问题.
我用了coding Examples 的一个Block RAM,但综合以后显示是Distributed RAM.警告会有大量的LUTs.
我把程序里enble的去掉了,综合以后没问题了。

begin
   if (clk'event and clk = '1') then
--      if (en_1 = '1') then
         if (w_en_1 = '1') then
            RAM_1(conv_integer(addressA)) := inputA;
         end if;
         outputA <= RAM_1(conv_integer(addressA));
         outputB <= RAM_1(conv_integer(addressB));
--      end if;
   end if;
end process;
eeleader
2楼-- · 2019-03-25 12:29
严重超载!
eeleader
3楼-- · 2019-03-25 16:52
 精彩回答 2  元偷偷看……

一周热门 更多>