blob: dbae03d02e534b8f5da5a80ac6cc29a8e90b040a [file] [log] [blame]
// Created by ihdl
module OR3_X4 (A1, A2, A3, ZN);
input A1;
input A2;
input A3;
output ZN;
or(ZN, i_4, A3);
or(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