From e3a9107a371340e5a4b8646a7943f1d7da210563 Mon Sep 17 00:00:00 2001 From: Joshua Wise Date: Tue, 13 Jan 2009 03:40:57 -0500 Subject: [PATCH] system: Swap ICache and DCache in arbiter order. --- system.v | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/system.v b/system.v index 602f4fd..1635a34 100644 --- 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; @@ -12,7 +12,7 @@ module System(input clk); 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]; -- 2.39.2