package choice
This package contains Chisel language definitions for describing configuration options and their accepted values.
- Source
- package.scala
- Alphabetic
- By Inheritance
- choice
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- abstract class Case extends AnyRef
An option case declaration.
- abstract class Group extends AnyRef
An option group declaration.
An option group declaration. Specifies a container grouping values for some design configuration parameter.
import chisel3.option.{Group, Case} object Platform extends Group { object FPGA extends Case object ASIC extends Case }
Example:
Value Members
- object ModuleChoice extends ModuleChoice$Intf
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,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.