1
0

fix number of IOMSHRs at 1

This commit is contained in:
Howard Mao 2016-01-25 13:23:11 -08:00
parent 305185c034
commit 7937fbf074

View File

@ -12,7 +12,6 @@ case object WordBits extends Field[Int]
case object StoreDataQueueDepth extends Field[Int]
case object ReplayQueueDepth extends Field[Int]
case object NMSHRs extends Field[Int]
case object NIOMSHRs extends Field[Int]
case object LRSCCycles extends Field[Int]
trait HasL1HellaCacheParameters extends HasL1CacheParameters {
@ -32,7 +31,7 @@ trait HasL1HellaCacheParameters extends HasL1CacheParameters {
val encRowBits = encDataBits*rowWords
val sdqDepth = p(StoreDataQueueDepth)
val nMSHRs = p(NMSHRs)
val nIOMSHRs = p(NIOMSHRs)
val nIOMSHRs = 1
val lrscCycles = p(LRSCCycles)
}