1
0

rocket: disable nbdcache until it's fully ported

This commit is contained in:
Wesley W. Terpstra 2016-11-18 19:55:24 -08:00
parent 452bb2fc80
commit 32a1c27441

View File

@ -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))
}
}