blob: c041f2e71dfa0cde7cd0bce6e2ea8f63d78cfcce [file] [log] [blame]
// Created by ihdl
module NOR3_X4 (A1, A2, A3, ZN);
input A1;
input A2;
input A3;
output ZN;
not(ZN, i_8);
or(i_8, i_9, A3);
or(i_9, A1, A2);
specify
(A1 => ZN) = (0.1, 0.1);
(A2 => ZN) = (0.1, 0.1);
(A3 => ZN) = (0.1, 0.1);
endspecify
endmodule