]>
Commit | Line | Data |
---|---|---|
1 | `define BUS_ICACHE 0 | |
2 | ||
3 | module System(input clk); | |
4 | wire [7:0] bus_req; | |
5 | wire [7:0] bus_ack; | |
6 | wire [31:0] bus_addr; | |
7 | wire [31:0] bus_rdata; | |
8 | wire [31:0] bus_wdata; | |
9 | wire bus_rd, bus_wr; | |
10 | wire bus_ready; | |
11 | ||
12 | wire bus_req_icache = bus_req[`BUS_ICACHE]; | |
13 | wire bus_ack_icache = bus_ack[`BUS_ICACHE]; | |
14 | wire [31:0] bus_addr_icache; | |
15 | wire [31:0] bus_wdata_icache; | |
16 | wire bus_rd_icache; | |
17 | wire bus_wr_icache; | |
18 | ||
19 | wire [31:0] bus_rdata_blockram; | |
20 | wire bus_ready_blockram; | |
21 | ||
22 | assign bus_addr = bus_addr_icache; | |
23 | assign bus_rdata = bus_rdata_blockram; | |
24 | assign bus_wdata = bus_wdata_icache; | |
25 | assign bus_rd = bus_rd_icache; | |
26 | assign bus_wr = bus_wr_icache; | |
27 | assign bus_ready = bus_ready_blockram; | |
28 | ||
29 | BusArbiter busarbiter(.bus_req(bus_req), .bus_ack(bus_ack)); | |
30 | ||
31 | ICache icache( | |
32 | .clk(clk), | |
33 | .rd_addr(), .rd_req(), .rd_wait(), .rd_data(), | |
34 | .bus_req(bus_req_icache), .bus_ack(bus_ack_icache), | |
35 | .bus_addr(bus_addr_icache), .bus_rdata(bus_rdata), | |
36 | .bus_wdata(bus_wdata_icache), .bus_rd(bus_rd_icache), | |
37 | .bus_wr(bus_wr_icache), .bus_ready(bus_ready)); | |
38 | ||
39 | BlockRAM blockram( | |
40 | .clk(clk), | |
41 | .bus_addr(bus_addr), .bus_rdata(bus_rdata_blockram), | |
42 | .bus_wdata(bus_wdata), .bus_rd(bus_rd), .bus_wr(bus_wr), | |
43 | .bus_ready(bus_ready_blockram)); | |
44 | ||
45 | endmodule |