syn_clk_buf.v
1.02 KB
/************************************************************************\
* *
* Copyright(C) 1994, Silicon Graphics, Inc. *
* *
* These coded instructions, statements, and computer programs contain *
* unpublished proprietary information of Silicon Graphics, Inc., and *
* are protected by Federal copyright law. They may not be disclosed *
* to third parties or copied or duplicated in any form, in whole or *
* in part, without the prior written consent of Silicon Graphics, Inc. *
* *
\************************************************************************/
module syn_clk_buf(in0, in1, in2, out0, out1, out2);
input in0, in1, in2;
output out0, out1, out2;
in01d5 i_0(.i(in0), .zn(out0));
in01d5 i_1(.i(in1), .zn(out1));
in01d5 i_2(.i(in2), .zn(out2));
endmodule