r#CoreGen Instantiations ##dfifo160#CoreGen Instantiations /******************************************************************* * This file was created by the Xilinx CORE Generator tool, and * * is (c) Xilinx, Inc. 1998, 1999. No part of this file may be * * transmitted to any third party (other than intended by Xilinx) * * or used without a Xilinx programmable or hardwire device without * * Xilinx's prior written permission. * *******************************************************************/ // The following line must appear at the top of the file in which // the core instantiation will be made. Ensure that the translate_off/_on // compiler directives are correct for your synthesis tool(s) //----------- Begin Cut here for LIBRARY inclusion --------// LIB_TAG // synopsys translate_off `include "XilinxCoreLib/fifosyncVHT.v" // synopsys translate_on // LIB_TAG_END ------- End LIBRARY inclusion -------------- // The following code must appear after the module in which it // is to be instantiated. Ensure that the translate_off/_on compiler // directives are correct for your synthesis tool(s). //----------- Begin Cut here for MODULE Declaration -------// MOD_TAG module dfifo160 ( D, WE, RE, RESET, C, FULL, EMPTY, BUFCTR_CE, BUFCTR_UPDN, Q); input [7 : 0] D; input WE; input RE; input RESET; input C; output FULL; output EMPTY; output BUFCTR_CE; output BUFCTR_UPDN; output [7 : 0] Q; // synopsys translate_off FIFOSYNCVHT #( 8, 0, 160, 1, 8) inst ( .D(D), .WE(WE), .RE(RE), .RESET(RESET), .C(C), .FULL(FULL), .EMPTY(EMPTY), .BUFCTR_CE(BUFCTR_CE), .BUFCTR_UPDN(BUFCTR_UPDN), .Q(Q)); // synopsys translate_on endmodule // MOD_TAG_END ------- End MODULE Declaration ------------- // The following must be inserted into your Verilog file for this // core to be instantiated. Change the instance name and port connections // (in parentheses) to your own signal names. //----------- Begin Cut here for INSTANTIATION Template ---// INST_TAG dfifo160 YourInstanceName ( .D(D), .WE(WE), .RE(RE), .RESET(RESET), .C(C), .FULL(FULL), .EMPTY(EMPTY), .BUFCTR_CE(BUFCTR_CE), .BUFCTR_UPDN(BUFCTR_UPDN), .Q(Q)); // INST_TAG_END ------ End INSTANTIATION Template --------- #