我是靠谱客的博主 积极皮卡丘,最近开发中收集的这篇文章主要介绍ISE警告问题,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1.Xst:647 - Input <m2b> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.

(检查各模块,其中一个或几个模块有定义m2b端口,但是内部未使用)

解决方法:这个特定的端口已经在您的HDL描述中声明了,但是没有驱动或不受任何内部逻辑的驱动。

未使用的输入端口将保留在设计中,但它们将完全断开连接。如果不打算使用端口,则可以安全地忽略此消息。为了避免此消息,请从HDL描述中删除任何无负载或无源元素。

输出端口将保留在最终的Netlist中,并将由逻辑0驱动。为了避免消息和保存端口资源,请从HDL描述中删除未使用的输出端口。


2.Xst:737 - Found 1-bit latch for signal <R2>. Latches may be generated from incomplete case or if statements. We do not recommend the use of latches in FPGA/CPLD designs, as they may lead to timing problems.

解决方法:在模块中,存在case语句的不完整,或者if语句的不完整,缺少对应的else语句

3.PhysDesignRules:372 - Gated clock. Clock net u_1/_n0076 is sourced by a combinatorial pin. This is not good design practice. Use the CE pin to control the loading of data into the flip-flop.

不该使用门控时钟

最后

以上就是积极皮卡丘为你收集整理的ISE警告问题的全部内容,希望文章能够帮你解决ISE警告问题所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(38)

评论列表共有 0 条评论

立即
投稿
返回
顶部