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