OR5B4.v
545 Bytes
// $Header: /root/leakn64/depot/rf/hw/flif/xilinx/OR5B4.v,v 1.1 2003/08/20 23:46:55 berndt Exp $
/*
FUNCTION : 5-INPUT OR GATE
*/
`timescale 100 ps / 10 ps
module OR5B4 (O, I0, I1, I2, I3, I4);
output O;
input I0, I1, I2, I3, I4;
not N3 (i3_inv, I3);
not N2 (i2_inv, I2);
not N1 (i1_inv, I1);
not N0 (i0_inv, I0);
or O1 (O, i0_inv, i1_inv, i2_inv, i3_inv, I4);
specify
(I0 *> O) = (1, 1);
(I1 *> O) = (1, 1);
(I2 *> O) = (1, 1);
(I3 *> O) = (1, 1);
(I4 *> O) = (1, 1);
endspecify
endmodule