blob: dc9b75ee3e2f72a114218b9458aa285b12d383e1 (
plain)
1
2
3
4
5
6
7
8
9
|
package chisel3.util.experimental
import chisel3.internal.Builder
import firrtl.AnnotationSeq
object getAnnotations {
/** Returns the global Annotations */
def apply(): AnnotationSeq = Builder.annotationSeq
}
|