2015-07-02 15:00:18 -04:00
|
|
|
// Copyright 1986-2014 Xilinx, Inc. All Rights Reserved.
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
// Tool Version: Vivado v.2014.3.1 (lin64) Build 1056140 Thu Oct 30 16:30:39 MDT 2014
|
2015-07-02 16:59:38 -04:00
|
|
|
// Date : Thu Jul 2 14:31:27 2015
|
2015-07-02 15:00:18 -04:00
|
|
|
// Host : parallella running 64-bit Ubuntu 14.04.2 LTS
|
2015-07-02 16:59:38 -04:00
|
|
|
// Command : write_verilog -force -mode synth_stub
|
|
|
|
// /home/aolofsson/Work_all/oh/elink/scripts/xilinx/temp/temp.srcs/sources_1/ip/fifo_async_104x16/fifo_async_104x16_stub.v
|
2015-07-02 15:00:18 -04:00
|
|
|
// Design : fifo_async_104x16
|
|
|
|
// Purpose : Stub declaration of top-level module interface
|
2015-07-02 16:59:38 -04:00
|
|
|
// Device : xc7z020clg484-1
|
2015-07-02 15:00:18 -04:00
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// This empty module with port declaration file causes synthesis tools to infer a black box for IP.
|
|
|
|
// The synthesis directives are for Synopsys Synplify support to prevent IO buffer insertion.
|
|
|
|
// Please paste the declaration into a Verilog source file or add the file as an additional source.
|
|
|
|
(* x_core_info = "fifo_generator_v12_0,Vivado 2014.3.1" *)
|
2015-07-02 16:59:38 -04:00
|
|
|
module fifo_async_104x16(wr_clk, wr_rst, rd_clk, rd_rst, din, wr_en, rd_en, dout, full, almost_full, empty, valid, prog_full)
|
|
|
|
/* synthesis syn_black_box black_box_pad_pin="wr_clk,wr_rst,rd_clk,rd_rst,din[103:0],wr_en,rd_en,dout[103:0],full,almost_full,empty,valid,prog_full" */;
|
2015-07-02 15:00:18 -04:00
|
|
|
input wr_clk;
|
|
|
|
input wr_rst;
|
|
|
|
input rd_clk;
|
|
|
|
input rd_rst;
|
|
|
|
input [103:0]din;
|
|
|
|
input wr_en;
|
|
|
|
input rd_en;
|
|
|
|
output [103:0]dout;
|
|
|
|
output full;
|
2015-07-02 16:59:38 -04:00
|
|
|
|
|
|
|
output almost_full;
|
|
|
|
|
2015-07-02 15:00:18 -04:00
|
|
|
output empty;
|
2015-07-02 16:59:38 -04:00
|
|
|
|
2015-07-02 15:00:18 -04:00
|
|
|
output valid;
|
2015-07-02 16:59:38 -04:00
|
|
|
|
|
|
|
output prog_full;
|
2015-07-02 15:00:18 -04:00
|
|
|
endmodule
|