blob: 29d979f431f622f63f36659b1ff4f0c6022ccd9a [file] [log] [blame]
// Created by ihdl
module OR4_X4 (A1, A2, A3, A4, ZN);
input A1;
input A2;
input A3;
input A4;
output ZN;
or(ZN, i_8, A4);
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);
(A4 => ZN) = (0.1, 0.1);
endspecify
endmodule