package aop
- Alphabetic
- Public
- Protected
Package Members
- package injecting
- package inspecting
Type Members
- abstract class Aspect[T <: RawModule] extends Annotation with Unserializable with NoTargetAnnotation
Represents an aspect of a Chisel module, by specifying what behavior should be done to instance, via the FIRRTL Annotation Mechanism
Represents an aspect of a Chisel module, by specifying what behavior should be done to instance, via the FIRRTL Annotation Mechanism
- T
Type of top-level module
- final class AspectLibrary extends RegisteredLibrary
Enables adding aspects to a design from the commandline, e.g.
Enables adding aspects to a design from the commandline, e.g. sbt> runMain chisel3.stage.ChiselMain --module <module> --with-aspect <aspect>
This is the documentation for Chisel.
Package structure
The chisel3 package presents the public API of Chisel. It contains the concrete core types
UInt,SInt,Bool,FixedPoint,Clock, andReg, the abstract typesBits,Aggregate, andData, and the aggregate typesBundleandVec.The Chisel package is a compatibility layer that attempts to provide chisel2 compatibility in chisel3.
Utility objects and methods are found in the
utilpackage.The
testerspackage defines the basic interface for chisel testers.