KEEPER.v
309 Bytes
// $Header: /root/leakn64/depot/rf/hw/debug/xilinx/KEEPER.v,v 1.1 2003/04/01 21:47:34 berndt Exp $
/*
FUNCTION : KEEPER
*/
`timescale 100 ps / 10 ps
module KEEPER (O);
inout O;
reg in;
always @(O)
if (O)
in <= 1;
else
in <= 0;
buf (pull1, pull0) B1 (O, in);
endmodule