-- Copyright 1986-2019 Xilinx, Inc. All Rights Reserved. -- -------------------------------------------------------------------------------- -- Tool Version: Vivado v.2019.2 (win64) Build 2708876 Wed Nov 6 21:40:23 MST 2019 -- Date : Thu Apr 30 18:05:15 2020 -- Host : Leif-I7 running 64-bit major release (build 9200) -- Command : write_vhdl -force -mode synth_stub -rename_top adc_fifo -prefix -- adc_fifo_ adc_fifo_stub.vhdl -- Design : adc_fifo -- Purpose : Stub declaration of top-level module interface -- Device : xc7k325tffg900-2 -- -------------------------------------------------------------------------------- library IEEE; use IEEE.STD_LOGIC_1164.ALL; entity adc_fifo is Port ( rst : in STD_LOGIC; wr_clk : in STD_LOGIC; rd_clk : in STD_LOGIC; din : in STD_LOGIC_VECTOR ( 127 downto 0 ); wr_en : in STD_LOGIC; rd_en : in STD_LOGIC; dout : out STD_LOGIC_VECTOR ( 127 downto 0 ); full : out STD_LOGIC; empty : out STD_LOGIC; prog_full : out STD_LOGIC; prog_empty : out STD_LOGIC ); end adc_fifo; architecture stub of adc_fifo is attribute syn_black_box : boolean; attribute black_box_pad_pin : string; attribute syn_black_box of stub : architecture is true; attribute black_box_pad_pin of stub : architecture is "rst,wr_clk,rd_clk,din[127:0],wr_en,rd_en,dout[127:0],full,empty,prog_full,prog_empty"; attribute x_core_info : string; attribute x_core_info of stub : architecture is "fifo_generator_v13_2_5,Vivado 2019.2"; begin end;