trait PeekPokable[T <: Data] extends Peekable[T] with Pokable[T] with AnyTestableData[T]
- Alphabetic
- By Inheritance
- PeekPokable
- AnyTestableData
- Pokable
- Peekable
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
- abstract def data: T
- Attributes
- protected
- Definition Classes
- AnyTestableData
- abstract def expect(expected: T, message: String)(implicit sourceInfo: SourceInfo): Unit
Expect the value of a data port to be equal to the expected value.
Expect the value of a data port to be equal to the expected value.
- expected
the expected value
- message
a message for the failure case
- Definition Classes
- Peekable
- Exceptions thrown
FailedExpectationException
if the observed value does not match the expected value
- abstract def peek()(implicit sourceInfo: SourceInfo): T
Get the value of a data port as a literal.
Get the value of a data port as a literal.
- returns
the value of the peeked data
- Definition Classes
- Peekable
- abstract def poke(literal: T): Unit
Sets the value of a data port.
Sets the value of a data port.
- literal
the value to set, which must be a literal
- Definition Classes
- Pokable
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- def +(other: String): String
- Implicit
- This member is added by an implicit conversion from PeekPokable[T] toany2stringadd[PeekPokable[T]] performed by method any2stringadd in scala.Predef.
- Definition Classes
- any2stringadd
- def ->[B](y: B): (PeekPokable[T], B)
- Implicit
- This member is added by an implicit conversion from PeekPokable[T] toArrowAssoc[PeekPokable[T]] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @inline()
- 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()
- def ensuring(cond: (PeekPokable[T]) => Boolean, msg: => Any): PeekPokable[T]
- Implicit
- This member is added by an implicit conversion from PeekPokable[T] toEnsuring[PeekPokable[T]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
- def ensuring(cond: (PeekPokable[T]) => Boolean): PeekPokable[T]
- Implicit
- This member is added by an implicit conversion from PeekPokable[T] toEnsuring[PeekPokable[T]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
- def ensuring(cond: Boolean, msg: => Any): PeekPokable[T]
- Implicit
- This member is added by an implicit conversion from PeekPokable[T] toEnsuring[PeekPokable[T]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
- def ensuring(cond: Boolean): PeekPokable[T]
- Implicit
- This member is added by an implicit conversion from PeekPokable[T] toEnsuring[PeekPokable[T]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def expect(expected: T)(implicit sourceInfo: SourceInfo): Unit
Expect the value of a data port to be equal to the expected value.
Expect the value of a data port to be equal to the expected value.
- expected
the expected value
- Definition Classes
- Peekable
- Exceptions thrown
FailedExpectationException
if the observed value does not match the expected value
- 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 simulatedModule: AnySimulatedModule
- Attributes
- protected
- Definition Classes
- AnyTestableData
- def simulationPort: Port
- Attributes
- protected
- Definition Classes
- AnyTestableData
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- 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()
Deprecated Value Members
- def formatted(fmtstr: String): String
- Implicit
- This member is added by an implicit conversion from PeekPokable[T] toStringFormat[PeekPokable[T]] performed by method StringFormat in scala.Predef.
- Definition Classes
- StringFormat
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.12.16) Use
formatString.format(value)
instead ofvalue.formatted(formatString)
, or use thef""
string interpolator. In Java 15 and later,formatted
resolves to the new method in String which has reversed parameters.
- def →[B](y: B): (PeekPokable[T], B)
- Implicit
- This member is added by an implicit conversion from PeekPokable[T] toArrowAssoc[PeekPokable[T]] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use
->
instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.
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.