yosys/techlibs/ice40/tests/test_bram.v

25 lines
450 B
Coq
Raw Normal View History

2015-04-24 01:32:07 -05:00
module bram #(
2015-04-25 13:44:51 -05:00
parameter ABITS = 8, DBITS = 8,
parameter INIT_ADDR = 0, INIT_DATA = 0
2015-04-24 01:32:07 -05:00
) (
input clk,
input [ABITS-1:0] WR_ADDR,
input [DBITS-1:0] WR_DATA,
input WR_EN,
input [ABITS-1:0] RD_ADDR,
output reg [DBITS-1:0] RD_DATA
);
reg [DBITS-1:0] memory [0:2**ABITS-1];
2015-04-25 13:44:51 -05:00
initial begin
memory[INIT_ADDR] <= INIT_DATA;
2015-04-25 13:44:51 -05:00
end
2015-04-24 01:32:07 -05:00
always @(posedge clk) begin
if (WR_EN) memory[WR_ADDR] <= WR_DATA;
RD_DATA <= memory[RD_ADDR];
end
endmodule