blob: 285e0dd51145d7e9528d08f8aa5e2ec84c570982 [file] [log] [blame]
// Created by ihdl
module NOR2_X4 (A1, A2, ZN);
input A1;
input A2;
output ZN;
not(ZN, i_16);
or(i_16, A1, A2);
specify
(A1 => ZN) = (0.1, 0.1);
(A2 => ZN) = (0.1, 0.1);
endspecify
endmodule