package test
Type Members
- class AllUnitTests extends RawModule
A Chisel module that discovers and constructs all UnitTest subtypes discovered in the classpath.
A Chisel module that discovers and constructs all UnitTest subtypes discovered in the classpath. This is just here as a convenience top-level generator to collect all unit tests. In practice you would likely want to use a command line utility that offers some additional filtering capability.
- trait UnitTest extends AnyRef
All classes and objects marked as UnitTest are automatically discoverable by the
DiscoverUnitTests
helper.
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 typesBundle
andVec
.The Chisel package is a compatibility layer that attempts to provide chisel2 compatibility in chisel3.
Utility objects and methods are found in the
util
package.The
testers
package defines the basic interface for chisel testers.