hey guys I am using project navigator and I get the following error in the translation report
ERROR:MapLib:93 - Illegal LOC on symbol "fpga_cclk" (pad signal=fpga_cclk) or
IBUFG symbol "fpga_cclk_ibufg" (output signal=fpga_cclk_ibufg), IPAD-IBUFG
should only be LOCed to GCLKIOB site.
I used the following in my prgram
component BufG
port (
I : in STD_LOGIC;
O : out std_logic
);
end component BufG;
----
---
---....
U1: BufG port map (
I => FPGA_CCLK
O => SpiClk
);
Does anybody know how to solve this error?
ERROR:MapLib:93 - Illegal LOC on symbol "fpga_cclk" (pad signal=fpga_cclk) or
IBUFG symbol "fpga_cclk_ibufg" (output signal=fpga_cclk_ibufg), IPAD-IBUFG
should only be LOCed to GCLKIOB site.
I used the following in my prgram
component BufG
port (
I : in STD_LOGIC;
O : out std_logic
);
end component BufG;
----
---
---....
U1: BufG port map (
I => FPGA_CCLK
O => SpiClk
);
Does anybody know how to solve this error?