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