1
0
Fork 0

dcache: fix stupidly wrong crossing comparison (#703)

This commit is contained in:
Wesley W. Terpstra 2017-04-25 09:18:41 -07:00 committed by GitHub
parent 4807ce7ced
commit f3ab23d068
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ class DCacheModule(outer: DCache) extends HellaCacheModule(outer) {
dataArb.io.out.ready := true
val rational = p(coreplex.RocketCrossing) match {
case coreplex.SynchronousCrossing(_) => true
case coreplex.RationalCrossing(_) => true
case _ => false
}