OR2.v
327 Bytes
// $Header: /root/leakn64/depot/rf/hw/debug/xilinx/OR2.v,v 1.1 2003/04/01 21:47:36 berndt Exp $
/*
FUNCTION : 2-INPUT OR GATE
*/
`timescale 100 ps / 10 ps
module OR2 (O, I0, I1);
output O;
input I0, I1;
or O1 (O, I0, I1);
specify
(I0 *> O) = (1, 1);
(I1 *> O) = (1, 1);
endspecify
endmodule