blob: 0a8911b5d1c50488035ac46cb982bc54e49e8d9b [file] [log] [blame]
// Created by ihdl
module NOR2_X1 (A1, A2, ZN);
input A1;
input A2;
output ZN;
not(ZN, i_10);
or(i_10, A1, A2);
specify
(A1 => ZN) = (0.1, 0.1);
(A2 => ZN) = (0.1, 0.1);
endspecify
endmodule