BUFGDLL.v 240 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 // $Header: /root/leakn64/depot/rf/hw/debug/xilinx/BUFGDLL.v,v 1.1 2003/04/01 21:47:33 berndt Exp $ /* FUNCTION : BUFGDLL */ `timescale 100 ps / 10 ps module BUFGDLL (O, I); output O; input I; buf B1 (O, I); endmodule