blob: 726e4eb4db1e557ccdcb831a588b3e22c3cdd287 [file] [log] [blame]
// Created by ihdl
module OR2_X4 (A1, A2, ZN);
input A1;
input A2;
output ZN;
or(ZN, A1, A2);
specify
(A1 => ZN) = (0.1, 0.1);
(A2 => ZN) = (0.1, 0.1);
endspecify
endmodule