blob: 7347b0d8f919d15f372fa2363b249675d7ffe0e9 [file] [log] [blame]
// Created by ihdl
module AND3_X2 (A1, A2, A3, ZN);
input A1;
input A2;
input A3;
output ZN;
and(ZN, i_4, A3);
and(i_4, A1, A2);
specify
(A1 => ZN) = (0.1, 0.1);
(A2 => ZN) = (0.1, 0.1);
(A3 => ZN) = (0.1, 0.1);
endspecify
endmodule