| 123456789101112131415161718192021222324252627 |
- // Copyright 1986-2020 Xilinx, Inc. All Rights Reserved.
- // --------------------------------------------------------------------------------
- // Tool Version: Vivado v.2020.2 (win64) Build 3064766 Wed Nov 18 09:12:45 MST 2020
- // Date : Mon Feb 20 11:34:27 2023
- // Host : DESKTOP-RMARCDV running 64-bit major release (build 9200)
- // Command : write_verilog -force -mode synth_stub -rename_top MeasDataFifo -prefix
- // MeasDataFifo_ MeasDataFifo_stub.v
- // Design : MeasDataFifo
- // Purpose : Stub declaration of top-level module interface
- // Device : xc7s25csga225-2
- // --------------------------------------------------------------------------------
- // 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_v13_2_5,Vivado 2020.2" *)
- module MeasDataFifo(clk, srst, din, wr_en, rd_en, dout, full, empty)
- /* synthesis syn_black_box black_box_pad_pin="clk,srst,din[255:0],wr_en,rd_en,dout[255:0],full,empty" */;
- input clk;
- input srst;
- input [255:0]din;
- input wr_en;
- input rd_en;
- output [255:0]dout;
- output full;
- output empty;
- endmodule
|