blob: 7517e0e5aacc2ad0fca0bc1c05bb3d0e5ee3d56f [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 NOR (
input A,
input B,
output Y
);
assign Y = ~(A | B);
endmodule