blob: 25e6096f5945e9cb7c6af3a599a6cf04eb8b0220 [file]
/*
* Copyright (C) 2020 The SymbiFlow Authors.
*
* Use of this source code is governed by a ISC-style
* license that can be found in the LICENSE file or at
* https://opensource.org/licenses/ISC
*/
(* whitebox *)
module NOT (I, O);
input wire I;
(* DELAY_CONST_I="1e-10" *)
output wire O;
assign O = ~I;
endmodule