ORCY.v
325 Bytes
// $Header: /root/leakn64/depot/rf/hw/debug/xilinx/ORCY.v,v 1.1 2003/04/01 21:47:36 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