1
0

tile: add halt_and_catch_fire signal

for unrecoverable / fatal errors
This commit is contained in:
Henry Cook
2017-09-20 18:53:44 -07:00
parent a887baa615
commit 28b635e721
2 changed files with 20 additions and 1 deletions

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)
}