// Created by ihdl `timescale 1ns/10ps `celldefine module INVX1 (A, Y); input A ; output Y ; not (Y, A); specify // delay parameters specparam tplhl$A$Y = 0.04:0.04:0.04, tphlh$A$Y = 0.048:0.048:0.048; // path delays (A *> Y) = (tphlh$A$Y, tplhl$A$Y); endspecify endmodule `endcelldefine