blob: 0452fd2ae5e5fa1cb9f8d84b29a23ba043b45514 [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
*
* SPDX-License-Identifier: ISC
*/
module NOT (
input A,
output Y
);
assign Y = ~A;
endmodule