blob: 18cc532b78bc40355fa5e74ded2dd28f45de311c [file] [log] [blame]
// Created by ihdl
module AOI21_X2 (A, B1, B2, ZN);
input A;
input B1;
input B2;
output ZN;
not(ZN, i_8);
or(i_8, A, i_9);
and(i_9, B1, B2);
specify
if((B1 == 1'b0) && (B2 == 1'b0)) (A => ZN) = (0.1, 0.1);
if((B1 == 1'b0) && (B2 == 1'b1)) (A => ZN) = (0.1, 0.1);
if((B1 == 1'b1) && (B2 == 1'b0)) (A => ZN) = (0.1, 0.1);
(B1 => ZN) = (0.1, 0.1);
(B2 => ZN) = (0.1, 0.1);
endspecify
endmodule