OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [tags/] [stable/] [mp3/] [lib/] [xilinx/] [unisims/] [KEEPER.v] - Rev 1765

Compare with Previous | Blame | View Log

// $Header: /home/marcus/revision_ctrl_test/oc_cvs/cvs/or1k/mp3/lib/xilinx/unisims/KEEPER.v,v 1.1.1.1 2001-11-04 18:59:48 lampret Exp $
 
/*
 
FUNCTION	: KEEPER
 
*/
 
 
`timescale  100 ps / 10 ps
`celldefine
 
module KEEPER (O);
 
    parameter cds_action = "ignore";
 
    inout O;
    reg   in;
 
    always @(O)
	if (O)
	    in <= 1;
	else
	    in <= 0;
 
    buf (pull1, pull0) B1 (O, in);
 
endmodule
`endcelldefine
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.