blob: b5941c79dff780d3fb90f08016444a4a73177cf6 [file] [log] [blame]
// DEFINES
`define WIDTH 8 // Bit width
`define DEPTH 4 // Bit depth
module spram(clock,
reset_n,
value_out,
value_in
);
// SIGNAL DECLARATIONS
input clock;
input reset_n;
input [`WIDTH-1:0] value_in;
output [`WIDTH-1:0] value_out;
wire [`WIDTH-1:0]value_out;
reg [`DEPTH-1:0] address_counter;
reg [`WIDTH-1:0] temp;
single_port_ram inst1(
.we(clock),
.clk(clock),
.data(value_in),
.out(value_out),
.addr(address_counter));
always @(posedge clock)
begin
if (reset_n == 1'b1) begin
address_counter <= 4'b0000;
end
else
begin
address_counter <= address_counter + 1;
end
end
endmodule