]>
Commit | Line | Data |
---|---|---|
23c6da6c JW |
1 | module RegFile( |
2 | input clk, | |
821617bb JW |
3 | input [3:0] read_0, |
4 | output reg [31:0] rdata_0, | |
23c6da6c JW |
5 | input [3:0] read_1, |
6 | output reg [31:0] rdata_1, | |
7 | input [3:0] read_2, | |
8 | output reg [31:0] rdata_2, | |
b3bb2fb8 CL |
9 | input [3:0] read_3, |
10 | output reg [31:0] rdata_3, | |
cb0428b6 | 11 | output reg [31:0] spsr, |
23c6da6c JW |
12 | input [3:0] write, |
13 | input write_req, | |
14 | input [31:0] write_data | |
15 | ); | |
16 | ||
17 | reg [31:0] regfile [0:15]; | |
18 | ||
19 | initial begin | |
20 | regfile[4'h0] = 32'h00000005; | |
21 | regfile[4'h1] = 32'h00000050; | |
22 | regfile[4'h2] = 32'h00000500; | |
23 | regfile[4'h3] = 32'h00005000; | |
24 | regfile[4'h4] = 32'h00050000; | |
25 | regfile[4'h5] = 32'h00500000; | |
26 | regfile[4'h6] = 32'h05000000; | |
27 | regfile[4'h7] = 32'h50000000; | |
6c715b10 CL |
28 | regfile[4'h8] = 32'hA0000000; |
29 | regfile[4'h9] = 32'h0A000000; | |
30 | regfile[4'hA] = 32'h00A00000; | |
31 | regfile[4'hB] = 32'h000A0000; | |
32 | regfile[4'hC] = 32'h0000A000; | |
33 | regfile[4'hD] = 32'h00000A00; | |
34 | regfile[4'hE] = 32'h000000A0; | |
cb0428b6 | 35 | regfile[4'hF] = 32'h00000000; /* Start off claiming we are in user mode. */ |
23c6da6c JW |
36 | end |
37 | ||
38 | always @(*) | |
39 | begin | |
821617bb JW |
40 | if ((read_0 == write) && write_req) |
41 | rdata_0 = write_data; | |
42 | else | |
43 | rdata_0 = regfile[read_0]; | |
44 | ||
23c6da6c JW |
45 | if ((read_1 == write) && write_req) |
46 | rdata_1 = write_data; | |
47 | else | |
48 | rdata_1 = regfile[read_1]; | |
49 | ||
50 | if ((read_2 == write) && write_req) | |
51 | rdata_2 = write_data; | |
52 | else | |
53 | rdata_2 = regfile[read_2]; | |
b3bb2fb8 CL |
54 | |
55 | if ((read_3 == write) && write_req) | |
56 | rdata_3 = write_data; | |
57 | else | |
58 | rdata_3 = regfile[read_3]; | |
cb0428b6 JW |
59 | |
60 | spsr = regfile[4'hF]; | |
23c6da6c JW |
61 | end |
62 | ||
63 | always @(posedge clk) | |
64 | if (write_req) | |
65 | regfile[write] <= write_data; | |
66 | endmodule |