URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [mp3/] [lib/] [xilinx/] [unisims/] [XORCY_L.v] - Rev 266
Go to most recent revision | Compare with Previous | Blame | View Log
// $Header: /home/marcus/revision_ctrl_test/oc_cvs/cvs/or1k/mp3/lib/xilinx/unisims/XORCY_L.v,v 1.1.1.1 2001-11-04 19:00:00 lampret Exp $ /* FUNCTION : XOR for carry logic */ `timescale 100 ps / 10 ps `celldefine module XORCY_L (LO, CI, LI); parameter cds_action = "ignore"; output LO; input CI, LI; xor X1 (LO, CI, LI); specify (CI *> LO) = (1, 1); (LI *> LO) = (1, 1); endspecify endmodule `endcelldefine
Go to most recent revision | Compare with Previous | Blame | View Log