2015-10-07 12:04:50 -04:00
|
|
|
// Copyright 1986-2015 Xilinx, Inc. All Rights Reserved.
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
// Tool Version: Vivado v.2015.1 (lin64) Build 1215546 Mon Apr 27 19:07:21 MDT 2015
|
2015-11-06 07:03:28 -05:00
|
|
|
// Date : Tue Nov 3 22:35:31 2015
|
2015-10-07 12:04:50 -04:00
|
|
|
// Host : parallella running 64-bit Ubuntu 14.04.3 LTS
|
|
|
|
// Command : write_verilog -force -mode synth_stub
|
|
|
|
// /home/aolofsson/Work_all/oh/xilibs/ip/fifo_async_104x32/fifo_async_104x32_stub.v
|
|
|
|
// Design : fifo_async_104x32
|
|
|
|
// Purpose : Stub declaration of top-level module interface
|
|
|
|
// Device : xc7z015clg485-1
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// 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 2015.1" *)
|
|
|
|
module fifo_async_104x32(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" */;
|
|
|
|
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;
|
|
|
|
output almost_full;
|
|
|
|
output empty;
|
|
|
|
output valid;
|
|
|
|
output prog_full;
|
|
|
|
endmodule
|