FPGš”øSIC
2.13K subscribers
86 photos
12 files
89 links
FPG/A/SIC tips and tricks

#FPGA #ASIC #VHDL #verilog #IP #Xilinx #Altera

PS: also might be intresting @ipcores
Download Telegram
Good solution to replace direct instantiating vendor-dependent clock buffer BUFG like that:

BUFG bufg_inst (
.I(clkin),
.O(clk_pcie)
);

instread to use the HDL-pragma like that (verilog):

(* clock_buffer_type = "BUFG" *) input clk_pcie;

Another BUFx type also aplicable for this pragma

#Xilinx #BUFG #primitives