|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
本帖最后由 sarah.china 于 2011-10-25 22:37 编辑
再用MIG控制DDR2的时候,没加入chipscope前还可以P&R,但是加入chipscope观察其信号的时候会出现这个错误:
ERRORack:1560 - The register "u_ddr2_top_0/u_mem_if_top/u_phy_top/u_phy_ctl_io/u_ff_ras_n" has the property
IOB=FORCE, but was not packed into the OLOGIC component. The output signal
for register symbol
u_ddr2_top_0/u_mem_if_top/u_phy_top/u_phy_ctl_io/u_ff_we_n requires general
routing.
这个怎么解决呢?去掉程序中的IOB=FORCE这个描述对程序有影响吗
其中程序出错点为:
// RAS: = 1 at reset
(* IOB = "FORCE" *) FDCPE u_ff_ras_n
(
.Q (ddr_ras_n),
.C (clk0),
.CE (1'b1),
.CLR (1'b0),
.D (ras_n_mux),
.PRE (rst0)
) /* synthesis syn_useioff = 1 */; |
|