annotate

chisel3.experimental.annotate
object annotate

Attributes

Source
Annotation.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
annotate.type

Members list

Value members

Concrete methods

def apply(targets: AnyTargetable*)(mkAnnos: => Seq[Annotation]): Unit

Create annotations.

Create annotations.

Avoid this API if possible.

Anything being annotated must be passed as arguments so that Chisel can do safety checks. The caller is still responsible for calling .toTarget on those arguments in mkAnnos.

Attributes

Source
Annotation.scala
def apply[T : Targetable](targets: Seq[T])(mkAnnos: => Seq[Annotation]): Unit

Create annotations.

Create annotations.

Avoid this API if possible.

Anything being annotated must be passed as arguments so that Chisel can do safety checks. The caller is still responsible for calling .toTarget on those arguments in mkAnnos.

Attributes

Source
Annotation.scala