Files
InputTest_MiSTer/rtl/spram.v
2022-02-06 20:01:02 +00:00

46 lines
1.3 KiB
Verilog

/*============================================================================
Generic single-port RAM module
Author: Jim Gregory - https://github.com/JimmyStones/
Version: 1.0
Date: 2021-07-03
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. If not, see <http://www.gnu.org/licenses/>.
===========================================================================*/
`timescale 1ps / 1ps
module spram #(
parameter address_width = 10,
parameter data_width = 8
) (
input wire clock,
input wire wren,
input wire [address_width-1:0] address,
input wire [data_width-1:0] data,
output reg [data_width-1:0] q
);
localparam ramLength = (2**address_width);
reg [data_width-1:0] mem [ramLength-1:0];
always @(posedge clock) begin
q <= mem[address];
if(wren) begin
//q <= data;
mem[address] <= data;
end
end
endmodule