package decode
Content Hierarchy
Ordering
- Alphabetic
Visibility
- Public
- Protected
Type Members
- case class DecodeTableAnnotation(target: ReferenceTarget, truthTable: String, minimizedTable: String) extends SingleTargetAnnotation[ReferenceTarget] with Product with Serializable
DecodeTableAnnotation used to store a decode result for a specific TruthTable.
DecodeTableAnnotation used to store a decode result for a specific TruthTable. This is useful for saving large TruthTable during a elaboration time.
- target
output wire of a decoder.
- truthTable
input TruthTable encoded in a serialized TruthTable.
- minimizedTable
minimized truthTable encoded in a serialized TruthTable.
- Note
user should manage the correctness of minimizedTable.
- abstract class Minimizer extends AnyRef
- final class TruthTable extends AnyRef
Value Members
- object EspressoMinimizer extends Minimizer with LazyLogging
- case object EspressoNotFoundException extends Exception with Product with Serializable
- object QMCMinimizer extends Minimizer
- object TruthTable
- object decoder extends LazyLogging
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.