提交 f2f5d330 编写于 作者: Fa_wang's avatar Fa_wang

icache:delete useless assert

上级 767926a2
......@@ -378,7 +378,7 @@ class ICache extends ICacheModule
(0 until blockWords).map{r =>
val row = dataHitWay.asTypeOf(Vec(blockWords,UInt(encRowBits.W)))(r)
val decodedRow = cacheParams.dataCode.decode(row)
assert(!(s3_valid && s3_hit && decodedRow.uncorrectable))
// assert(!(s3_valid && s3_hit && decodedRow.uncorrectable))
decodedRow.corrected
}
)
......
......@@ -15,7 +15,7 @@ trait HasSbufferCst extends HasXSParameter {
val evictCycle = 1 << 20
require(isPow2(evictCycle))
val countBits = log2Up(evictCyclei+1)
val countBits = log2Up(evictCycle+1)
val SbufferIndexWidth: Int = log2Up(StoreBufferSize)
// paddr = tag + offset
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册