blob: 9b7fce3886c2713bab0ce71dccbeb02193a7d0c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import firrtl.AnnotationSeq
import firrtl.annotations.Annotation
package object firrtl {
implicit def seqToAnnoSeq(xs: Seq[Annotation]) = AnnotationSeq(xs)
implicit def annoSeqToSeq(as: AnnotationSeq): Seq[Annotation] = as.underlying
/* Options as annotations compatibility items */
@deprecated("Use firrtl.stage.TargetDirAnnotation", "3.2")
val TargetDirAnnotation = firrtl.stage.TargetDirAnnotation
}
|