object EphemeralSimulator extends PeekPokeAPI
Provides a simple API for "ephemeral" invocations (where you don't care about the artifacts after the invocation completes) to
simulate Chisel modules. To keep things really simple, EphemeralSimulator
simulations can only be controlled using the
peek/poke API, which provides enough control while hiding some of the lower-level svsim complexity.
- Source
- EphemeralSimulator.scala
import chisel3.simulator.EphemeralSimulator._ ... simulate(new MyChiselModule()) { module => ... }
Example:
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- EphemeralSimulator
- PeekPokeAPI
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def simulate[T <: RawModule](module: => T, layerControl: Type = LayerControl.EnableAll)(body: (T) => Unit): Unit
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- implicit def toTestableBool(bool: Bool): TestableBool
- Definition Classes
- PeekPokeAPI
- implicit def toTestableClock(clock: Clock): TestableClock
- Definition Classes
- PeekPokeAPI
- implicit def toTestableData[T <: Data](data: T): TestableData[T]
- Definition Classes
- PeekPokeAPI
- implicit def toTestableEnum[T <: EnumType](data: T): TestableEnum[T]
- Definition Classes
- PeekPokeAPI
- implicit def toTestableRecord[T <: Record](record: T): TestableRecord[T]
- Definition Classes
- PeekPokeAPI
- implicit def toTestableReset(reset: Reset): TestableReset
- Definition Classes
- PeekPokeAPI
- implicit def toTestableSInt(sint: SInt): TestableSInt
- Definition Classes
- PeekPokeAPI
- implicit def toTestableUInt(uint: UInt): TestableUInt
- Definition Classes
- PeekPokeAPI
- implicit def toTestableVec[T <: Data](vec: Vec[T]): TestableVec[T]
- Definition Classes
- PeekPokeAPI
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
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.