MeasDataFifo_stub.v 1.3 KB

123456789101112131415161718192021222324252627
  1. // Copyright 1986-2020 Xilinx, Inc. All Rights Reserved.
  2. // --------------------------------------------------------------------------------
  3. // Tool Version: Vivado v.2020.2 (win64) Build 3064766 Wed Nov 18 09:12:45 MST 2020
  4. // Date : Thu Jul 13 15:41:50 2023
  5. // Host : DESKTOP-RMARCDV running 64-bit major release (build 9200)
  6. // Command : write_verilog -force -mode synth_stub -rename_top MeasDataFifo -prefix
  7. // MeasDataFifo_ MeasDataFifo_stub.v
  8. // Design : MeasDataFifo
  9. // Purpose : Stub declaration of top-level module interface
  10. // Device : xc7s25csga324-2
  11. // --------------------------------------------------------------------------------
  12. // This empty module with port declaration file causes synthesis tools to infer a black box for IP.
  13. // The synthesis directives are for Synopsys Synplify support to prevent IO buffer insertion.
  14. // Please paste the declaration into a Verilog source file or add the file as an additional source.
  15. (* x_core_info = "fifo_generator_v13_2_5,Vivado 2020.2" *)
  16. module MeasDataFifo(clk, srst, din, wr_en, rd_en, dout, full, empty)
  17. /* synthesis syn_black_box black_box_pad_pin="clk,srst,din[255:0],wr_en,rd_en,dout[255:0],full,empty" */;
  18. input clk;
  19. input srst;
  20. input [255:0]din;
  21. input wr_en;
  22. input rd_en;
  23. output [255:0]dout;
  24. output full;
  25. output empty;
  26. endmodule