]> Joshua Wise's Git repositories - firearm.git/commitdiff
system: Swap ICache and DCache in arbiter order.
authorJoshua Wise <joshua@rebirth.joshuawise.com>
Tue, 13 Jan 2009 08:40:57 +0000 (03:40 -0500)
committerJoshua Wise <joshua@rebirth.joshuawise.com>
Tue, 13 Jan 2009 08:40:57 +0000 (03:40 -0500)
system.v

index 602f4fd42a748f777dda1cea03aba7b57bb202bb..1635a34159471ec94291a13d3569e1e5eeecd4e8 100644 (file)
--- a/system.v
+++ b/system.v
@@ -1,5 +1,5 @@
-`define BUS_ICACHE 0
-`define BUS_DCACHE 1
+`define BUS_ICACHE 1
+`define BUS_DCACHE 0
 
 module System(input clk);
        wire [7:0] bus_req;
 
 module System(input clk);
        wire [7:0] bus_req;
@@ -12,7 +12,7 @@ module System(input clk);
 
        wire bus_req_icache;
        wire bus_req_dcache;
 
        wire bus_req_icache;
        wire bus_req_dcache;
-       assign bus_req = {6'b0, bus_req_dcache, bus_req_icache};
+       assign bus_req = {6'b0, bus_req_icache, bus_req_dcache};
        wire bus_ack_icache = bus_ack[`BUS_ICACHE];
        wire bus_ack_dcache = bus_ack[`BUS_DCACHE];
        
        wire bus_ack_icache = bus_ack[`BUS_ICACHE];
        wire bus_ack_dcache = bus_ack[`BUS_DCACHE];
        
This page took 0.025303 seconds and 4 git commands to generate.