// 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 : Sun Feb 16 16:59:04 2020 // Host : Leif-I7 running 64-bit major release (build 9200) // Command : write_verilog -force -mode synth_stub -rename_top bram_phys -prefix // bram_phys_ bram_adc_stub.v // Design : bram_adc // Purpose : Stub declaration of top-level module interface // Device : xc7k325tffg900-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 = "blk_mem_gen_v8_4_4,Vivado 2019.2" *) module bram_phys(clka, wea, addra, dina, clkb, addrb, doutb) /* synthesis syn_black_box black_box_pad_pin="clka,wea[0:0],addra[15:0],dina[19:0],clkb,addrb[15:0],doutb[19:0]" */; input clka; input [0:0]wea; input [15:0]addra; input [19:0]dina; input clkb; input [15:0]addrb; output [19:0]doutb; endmodule