package scalatest
Ordering
- Alphabetic
- By Inheritance
Inherited
- scalatest
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- trait ChiselSim extends HasCliOptions with HasConfigMap with ChiselOpts with EmitVcd with FirtoolOpts with TestingDirectory with simulator.ChiselSim
A trait that provides ChiselSim APIs and integration with Scalatest.
A trait that provides ChiselSim APIs and integration with Scalatest.
Example usage:
import chisel3.simulator.scalatestChiselSim import org.scalatest.funspec.AnyFunSpec import org.scalatest.matches.should.Matchers class Foo extends AnyFunSpec with Matchers with ChiselSim { /** This has access to all ChiselSim APIs like `simulate`, `peek`, and `poke`. */ }
- See also
- trait HasCliOptions extends HasConfigMap
Value Members
- object Cli
ChiselSim command line interface traits that can be added to Scalatest tests
- object HasCliOptions
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.