本帖最后由 feihufuture 于 2021-3-6 11:42 编辑
编者按:电子研发十年多,技术心得文档也慢慢积累到了20万字,现在将不需要保密的公共知识部分进行逐条公开,希望能帮助到你!
[payamount]1.00[/payamount]
[pay]
1、数据位宽不对应的warning
解决办法:对1加上位数,如:BlockTimeGapCnt <=BlockTimeGapCnt + 1'b1; 解决办法:输入端口的数据要用纯寄存器或者wire型,不要用表达式作为输入,输入端口数据位宽要与ip定义一致。
2、输入端口已使用却被警告“悬空”- WARNING:Xst:647 -Input is never used. This port will be preserved and left unconnected ifit belongs to a top-level block or it belongs to a sub-block and the hierarchyof this sub-block is preserved.
解决办法: 某个模块的输入端口没有被使用; 顶层模块的输入端口,输入到了多个模块,却只被其中某几个使用到了。
[/pay]
|