TDSECCGX4U.v 463 Bytes
// VERSION:1.00 DATE:00/09/20 OPENCAD Verilog Library
`timescale 1ps / 1ps
`celldefine
`ifdef verifault
    `suppress_faults
    `enable_portfaults
`endif
module TDSECCGX4U ( N01, H01 );
    input H01;
    output N01;

    buf ( _H01, H01 );
    buf ( N01, 1'b0 );

    specify
        specparam DMY_SPC=1;

        ( H01 *> N01 ) = ( 1:1:1, 1:1:1 );
    endspecify

endmodule
`ifdef verifault
    `nosuppress_faults
    `disable_portfaults
`endif
`endcelldefine