// Created by ihdl `timescale 1ns/10ps `celldefine module CLKBUF3 (A, Y); input A ; output Y ; buf (Y, A); specify // delay parameters specparam tpllh$A$Y = 0.36:0.36:0.36, tphhl$A$Y = 0.37:0.37:0.37; // path delays (A *> Y) = (tpllh$A$Y, tphhl$A$Y); endspecify endmodule `endcelldefine