ORCY.v
324 Bytes
// $Header: /root/leakn64/depot/rf/hw/flif/xilinx/ORCY.v,v 1.1 2003/08/20 23:46:55 berndt Exp $
/*
FUNCTION : OR for carry logic
*/
`timescale 100 ps / 10 ps
module ORCY (O, CI, I);
output O;
input CI, I;
or X1 (O, CI, I);
specify
(CI *> O) = (1, 1);
(I *> O) = (1, 1);
endspecify
endmodule