我试图获取reg的值并将其与if语句中的数字进行比较
val refill_addr = Reg(UInt(width = paddrBits))
if ( refill_addr > 20000.U)
cacheable := true
else
cacheable := false
但我收到此错误
[error] /home/a/i-rocket-chip/src/main/scala/rocket/ICache.scala:365:18: type mismatch;
[error] found : chisel3.core.Bool
[error] required: Boolean
[error] if ( refill_addr > 20000.U)
[error] ^
[error] one error found
[error] (Compile / compileIncremental) Compilation failed
答案 0 :(得分:3)
您应在此处使用when
/ .otherwise
,而不是if
/ else
。
when
是一种Chisel(硬件)构造,最终将映射到一个或多个多路复用器。 if
是Scala构造,可用于硬件的编译时生成。
when (refill_addr > 20000.U) {
cacheable := true
} .otherwise {
cacheable := false
}
有关更多信息,请there was a similar question here。
答案 1 :(得分:0)
另一个方便且经过FIRRTL优化的解决方案是使用Mux
:
val cacheable = Mux(refill_addr > 20000.U, true.B, false.B)
有关更复杂的表达式和用例,您可以查看this guide。