tile: add halt_and_catch_fire signal

for unrecoverable / fatal errors
This commit is contained in:
Henry Cook
2017-09-21 14:58:47 -07:00
parent a887baa615
commit 28b635e721
2 changed files with 20 additions and 1 deletions
+4
View File
@@ -26,6 +26,10 @@ trait Clocked extends Bundle {
val reset = Bool()
}
trait CanHaltAndCatchFire extends Bundle {
val halt_and_catch_fire = Bool(OUTPUT)
}
object DecoupledHelper {
def apply(rvs: Bool*) = new DecoupledHelper(rvs)
}