case class GlobalResetCondition(target: ReferenceTarget) extends SingleTargetAnnotation[ReferenceTarget] with DontTouchAllTargets with Product with Serializable
Masks off assertions, printfs, and autocounter events when the target bool is deasserted.
Users typically wish to disable many forms instrumentation (e.g., synthesized assertions and printfs, autocounters) while the target is under reset. By default, most of FireSim's instrumentations features mask off events using a module-local reset, generally Chisel's implicit reset. However, in some cases the module-local reset may not be asserted at the start of a reset sequence, leading to spurious assertion fires. This annotation provides a coarse-grained means to globally mask off these events until the target is sufficiently far in reset.
Note, while it is possible to use this signal as a replacement for FireSim's trigger system, it is intended to support this time-zero reset case, and has different timing semantics. See: https://docs.fires.im/en/latest/Golden-Gate/Triggers.html
- target
The boolean enable
- Alphabetic
- By Inheritance
- GlobalResetCondition
- Serializable
- DontTouchAllTargets
- HasDontTouches
- SingleTargetAnnotation
- Annotation
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new GlobalResetCondition(target: ReferenceTarget)
- target
The boolean enable
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
- def dontTouches: Iterable[ReferenceTarget]
- Definition Classes
- DontTouchAllTargets → HasDontTouches
- def duplicate(n: ReferenceTarget): GlobalResetCondition
- Definition Classes
- GlobalResetCondition → SingleTargetAnnotation
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- def getTargets: Seq[Target]
- Definition Classes
- SingleTargetAnnotation → Annotation
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def serialize: String
- Definition Classes
- Annotation
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val target: ReferenceTarget
- Definition Classes
- GlobalResetCondition → SingleTargetAnnotation
- def update(renames: RenameMap): Seq[Annotation]
- Definition Classes
- SingleTargetAnnotation → Annotation
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])