Merge pull request #306 from lschuermann/dev/csr-plugin-formal-halt
CsrPlugin: insert FORMAL_HALT := False
This commit is contained in:
commit
b29eb542f2
|
@ -670,6 +670,10 @@ class CsrPlugin(val config: CsrPluginConfig) extends Plugin[VexRiscv] with Excep
|
|||
}
|
||||
}
|
||||
|
||||
// The CSR plugin will invoke a trap handler on exception, which does not
|
||||
// count as halt-state by the RVFI spec, and neither do other instructions
|
||||
// such as `wfi`, etc. Hence statically drive the output:
|
||||
pipeline.stages.head.insert(FORMAL_HALT) := False
|
||||
|
||||
case class Xtvec() extends Bundle {
|
||||
val mode = Bits(2 bits)
|
||||
|
|
Loading…
Reference in New Issue