ISE14.6综合的时候时钟输入出现警告提示 需要声明 this BUFG explicitedly[复制链接]
我是用XILINX XC9500XL-144芯片,配置引脚p30为时钟输入,综合的时候出现
waring:Cpld - Inferring BUFG constraint for signal 'iGCK1' based upon the LOC constraint 'P30'. It is recommended that you declare this BUFG explicitedly in your design. Note that for certain device families the output of a BUFG constraint can not drive a gated clock, and the BUFG constraint will be ignored.
always@(posedge iGCK1)
begin
if(ireset)
begin
oreset<=1;
ob<=0;
o1start<=0;
end
else if(!ireset)
begin
if(ob<=350110)
ob<=ob+1;
else
ob<=ob;
end
case (ob)
10:oreset<=0;
110:oreset<=1;
350110:o1start<=1;
endcase
end