|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
如题,使用的是Xilinx家的S6系列FPGA;在map过程中出现如下error:
ERRORlace:1205 - This design contains a global buffer instance,
<CLK_DIV2_Inst/clkout1_buf>, driving the net, <clk_25M_OBUF>, that is driving
the following (first 30) non-clock load pins off chip.
< PIN: clk_25M.O; >
This design practice, in Spartan-6, can lead to an unroutable situation due
to limitations in the global routing. If the design does route there may be
excessive delay or skew on this net. It is recommended to use a Clock
Forwarding technique to create a reliable and repeatable low skew solution:
instantiate an ODDR2 component; tie the .D0 pin to Logic1; tie the .D1 pin to
Logic0; tie the clock net to be forwarded to .C0; tie the inverted clock to
.C1. If you wish to override this recommendation, you may use the
CLOCK_DEDICATED_ROUTE constraint (given below) in the .ucf file to demote
this message to a WARNING and allow your design to continue. Although the net
may still not route, you will be able to analyze the failure in FPGA_Editor.
PIN "CLK_DIV2_Inst/clkout1_buf.O" CLOCK_DEDICATED_ROUTE = FALSE; >
我现在照着如上的方法,在ucf中添加了PIN "CLK_DIV2_Inst/clkout1_buf.O" CLOCK_DEDICATED_ROUTE = FALSE;
这个约束,现在工程没有error了,但是不知道这种问题是如何解决的,前来取取经! |
|