MeasDataFifo.veo 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. // (c) Copyright 1995-2023 Xilinx, Inc. All rights reserved.
  2. //
  3. // This file contains confidential and proprietary information
  4. // of Xilinx, Inc. and is protected under U.S. and
  5. // international copyright and other intellectual property
  6. // laws.
  7. //
  8. // DISCLAIMER
  9. // This disclaimer is not a license and does not grant any
  10. // rights to the materials distributed herewith. Except as
  11. // otherwise provided in a valid license issued to you by
  12. // Xilinx, and to the maximum extent permitted by applicable
  13. // law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND
  14. // WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES
  15. // AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING
  16. // BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON-
  17. // INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and
  18. // (2) Xilinx shall not be liable (whether in contract or tort,
  19. // including negligence, or under any other theory of
  20. // liability) for any loss or damage of any kind or nature
  21. // related to, arising under or in connection with these
  22. // materials, including for any direct, or any indirect,
  23. // special, incidental, or consequential loss or damage
  24. // (including loss of data, profits, goodwill, or any type of
  25. // loss or damage suffered as a result of any action brought
  26. // by a third party) even if such damage or loss was
  27. // reasonably foreseeable or Xilinx had been advised of the
  28. // possibility of the same.
  29. //
  30. // CRITICAL APPLICATIONS
  31. // Xilinx products are not designed or intended to be fail-
  32. // safe, or for use in any application requiring fail-safe
  33. // performance, such as life-support or safety devices or
  34. // systems, Class III medical devices, nuclear facilities,
  35. // applications related to the deployment of airbags, or any
  36. // other applications that could lead to death, personal
  37. // injury, or severe property or environmental damage
  38. // (individually and collectively, "Critical
  39. // Applications"). Customer assumes the sole risk and
  40. // liability of any use of Xilinx products in Critical
  41. // Applications, subject only to applicable laws and
  42. // regulations governing limitations on product liability.
  43. //
  44. // THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS
  45. // PART OF THIS FILE AT ALL TIMES.
  46. //
  47. // DO NOT MODIFY THIS FILE.
  48. // IP VLNV: xilinx.com:ip:fifo_generator:13.2
  49. // IP Revision: 5
  50. // The following must be inserted into your Verilog file for this
  51. // core to be instantiated. Change the instance name and port connections
  52. // (in parentheses) to your own signal names.
  53. //----------- Begin Cut here for INSTANTIATION Template ---// INST_TAG
  54. MeasDataFifo your_instance_name (
  55. .clk(clk), // input wire clk
  56. .srst(srst), // input wire srst
  57. .din(din), // input wire [255 : 0] din
  58. .wr_en(wr_en), // input wire wr_en
  59. .rd_en(rd_en), // input wire rd_en
  60. .dout(dout), // output wire [255 : 0] dout
  61. .full(full), // output wire full
  62. .empty(empty) // output wire empty
  63. );
  64. // INST_TAG_END ------ End INSTANTIATION Template ---------
  65. // You must compile the wrapper file MeasDataFifo.v when simulating
  66. // the core, MeasDataFifo. When compiling the wrapper file, be sure to
  67. // reference the Verilog simulation library.