Skip to content

Commit

Permalink
Update src/main/scala/tile/Interrupts.scala
Browse files Browse the repository at this point in the history
  • Loading branch information
mwachs5 authored Apr 25, 2020
1 parent 4d762a4 commit 2c9e91b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/tile/Interrupts.scala
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ trait SourcesExternalNotifications { this: BaseTile =>
val cease = (waitForQuiescence(c))
// Test-Only Code --
val prev_cease = RegNext(c, false.B)
assert((!(prev_cease & !c) | reset.asBool), "CEASE line can not glitch once raised")
assert(!(prev_cease & !c), "CEASE line can not glitch once raised")
cease
}.getOrElse(false.B)
}
Expand Down

0 comments on commit 2c9e91b

Please sign in to comment.