error:ngdbuild:455
Hi,
I don't know if its possible to put the ouput of a IBUFG on an output pin of your FPGA, and to use it as a clock in the design. The Builder may try to put the signal in IO pad and so cannot use it as an internal clock ...
May be you have to generate 2 BUFG with the same input. one output will be used as internal clock, the other as an output.
Use the attribute to avoid synthesis symplification (with XST):
attribute keep : string;
attribute keep of cclk1 : signal is "true";
attribute keep of cclk2 : signal is "true";
I hope this will help you...