/*########################################################################### # Function: Dual port memory wrapper (one read/ one write port) # To run without hardware platform dependancy, `define: # "TARGET_CLEAN" ############################################################################ */ module memory_dp(/*AUTOARG*/ // Outputs rd_data, // Inputs wr_clk, wr_en, wr_addr, wr_data, rd_clk, rd_en, rd_addr ); parameter AW = 14; parameter DW = 32; parameter WED = DW/8; //one per byte parameter MD = 1< This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.This program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program (see the file COPYING). If not, see . */