MeasDataFifo_stub.vhdl 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  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_vhdl -force -mode synth_stub -rename_top MeasDataFifo -prefix
  7. -- MeasDataFifo_ MeasDataFifo_stub.vhdl
  8. -- Design : MeasDataFifo
  9. -- Purpose : Stub declaration of top-level module interface
  10. -- Device : xc7s25csga324-2
  11. -- --------------------------------------------------------------------------------
  12. library IEEE;
  13. use IEEE.STD_LOGIC_1164.ALL;
  14. entity MeasDataFifo is
  15. Port (
  16. clk : in STD_LOGIC;
  17. srst : in STD_LOGIC;
  18. din : in STD_LOGIC_VECTOR ( 255 downto 0 );
  19. wr_en : in STD_LOGIC;
  20. rd_en : in STD_LOGIC;
  21. dout : out STD_LOGIC_VECTOR ( 255 downto 0 );
  22. full : out STD_LOGIC;
  23. empty : out STD_LOGIC
  24. );
  25. end MeasDataFifo;
  26. architecture stub of MeasDataFifo is
  27. attribute syn_black_box : boolean;
  28. attribute black_box_pad_pin : string;
  29. attribute syn_black_box of stub : architecture is true;
  30. attribute black_box_pad_pin of stub : architecture is "clk,srst,din[255:0],wr_en,rd_en,dout[255:0],full,empty";
  31. attribute x_core_info : string;
  32. attribute x_core_info of stub : architecture is "fifo_generator_v13_2_5,Vivado 2020.2";
  33. begin
  34. end;