blob: ec7159793ab0ecaf4bf07b2787965fb70f60f544 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// See LICENSE for license details.
import firrtl.annotations.Annotation
package object firrtl {
// Force initialization of the Forms object - https://github.com/freechipsproject/firrtl/issues/1462
private val _dummyForms = firrtl.stage.Forms
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", "1.2")
type TargetDirAnnotation = firrtl.options.TargetDirAnnotation
@deprecated("Use firrtl.stage.TargetDirAnnotation", "1.2")
val TargetDirAnnotation = firrtl.options.TargetDirAnnotation
}
|