From 32a1c274413f65147b9951105264852d4ea466a6 Mon Sep 17 00:00:00 2001 From: "Wesley W. Terpstra" Date: Fri, 18 Nov 2016 19:55:24 -0800 Subject: [PATCH] rocket: disable nbdcache until it's fully ported --- src/main/scala/rocket/HellaCache.scala | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/scala/rocket/HellaCache.scala b/src/main/scala/rocket/HellaCache.scala index eb1a91f9..6d172941 100644 --- a/src/main/scala/rocket/HellaCache.scala +++ b/src/main/scala/rocket/HellaCache.scala @@ -161,7 +161,8 @@ class HellaCacheModule(outer: HellaCache)(implicit val p: Parameters) extends La object HellaCache { def apply(cfg: DCacheConfig)(implicit p: Parameters) = { - if (cfg.nMSHRs == 0) LazyModule(new DCache(cfg)) - else LazyModule(new NonBlockingDCache(cfg)) + //if (cfg.nMSHRs == 0) LazyModule(new DCache(cfg)) + //else LazyModule(new NonBlockingDCache(cfg)) + LazyModule(new DCache(cfg)) } }