]>
Commit | Line | Data |
---|---|---|
1 | module BlockRAM( | |
2 | input clk, | |
3 | input [31:0] bus_addr, | |
4 | output wire [31:0] bus_rdata, | |
5 | input [31:0] bus_wdata, | |
6 | input bus_rd, | |
7 | input bus_wr, | |
8 | output wire bus_ready | |
9 | ); | |
10 | ||
11 | /* This module is mapped in physical memory from 0x00000000 to | |
12 | * 0x00004000. rdata and ready must be driven to zero if the | |
13 | * address is not within the range of this module. | |
14 | */ | |
15 | wire decode = (bus_addr & ~32'h00003FFF) == 32'h00000000; | |
16 | /* verilator lint_off WIDTH */ | |
17 | wire [13:0] ramaddr = bus_addr & 32'h3FFC; /* mask off lower two bits | |
18 | * for word alignment */ | |
19 | /* verilator lint_on WIDTH */ | |
20 | ||
21 | reg [31:0] data [(16384 / 4 - 1):0]; | |
22 | ||
23 | reg [31:0] temprdata = 0; | |
24 | reg [13:0] lastread = 14'h3FFF; | |
25 | assign bus_rdata = (bus_rd && decode) ? temprdata : 32'h0; | |
26 | ||
27 | assign bus_ready = decode && | |
28 | (bus_wr || (bus_rd && (lastread == ramaddr))); | |
29 | ||
30 | initial | |
31 | $readmemh("ram.hex", data); | |
32 | ||
33 | always @(posedge clk) | |
34 | begin | |
35 | if (bus_wr && decode) | |
36 | data[ramaddr[13:2]] <= bus_wdata; | |
37 | ||
38 | /* This is not allowed to be conditional -- stupid Xilinx | |
39 | * blockram. */ | |
40 | temprdata <= data[ramaddr[13:2]]; | |
41 | lastread <= ramaddr; | |
42 | end | |
43 | endmodule |