From eae571e3711d32e139920bf21f9aa66d5e02dff9 Mon Sep 17 00:00:00 2001 From: Stephen Twigg Date: Tue, 5 Nov 2013 15:31:03 -0800 Subject: [PATCH] Remove rocc memory simplifye module (Hwacha has its own) --- rocket/src/main/scala/tile.scala | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/rocket/src/main/scala/tile.scala b/rocket/src/main/scala/tile.scala index 0a4fc7a5..321e8c25 100644 --- a/rocket/src/main/scala/tile.scala +++ b/rocket/src/main/scala/tile.scala @@ -50,11 +50,9 @@ class Tile(resetSignal: Bool = null)(confIn: RocketConfiguration) extends Module ptw.io.requestor(1) <> dcache.io.cpu.ptw if (!conf.rocc.isEmpty) { - val dcIF = Module(new SimpleHellaCacheIF) val rocc = Module((conf.rocc.get)(conf)) - dcIF.io.requestor <> rocc.io.mem core.io.rocc <> rocc.io - dcacheArb.io.requestor(2) <> dcIF.io.cache + dcacheArb.io.requestor(2) <> rocc.io.mem } core.io.host <> io.host