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