Packages

  • package root

    This is the documentation for Chisel.

    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, FixedPoint, Clock, and Reg, the abstract types Bits, Aggregate, and Data, and the aggregate types Bundle and Vec.

    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.

    Definition Classes
    root
  • package chisel3

    The chisel3 package contains the chisel3 API.

    The chisel3 package contains the chisel3 API. It maps core components into the public chisel3 namespace.

    Definition Classes
    root
  • package util

    The util package provides extensions to core chisel for common hardware components and utility functions.

    The util package provides extensions to core chisel for common hardware components and utility functions.

    Definition Classes
    chisel3
  • object ReadyValidIO
    Definition Classes
    util
  • AddMethodsToReadyValid
c

chisel3.util.ReadyValidIO

AddMethodsToReadyValid

implicit final class AddMethodsToReadyValid[T <: Data] extends AnyVal

Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AddMethodsToReadyValid
  2. AnyVal
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new AddMethodsToReadyValid(target: ReadyValidIO[T])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##(): Int
    Definition Classes
    Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def deq(): T

    Assert ready on this port and return the associated data bits.

    Assert ready on this port and return the associated data bits. This is typically used when valid has been asserted by the producer side.

    returns

    the data for this device,

  6. def enq(dat: T): T

    push dat onto the output bits of this interface to let the consumer know it has happened.

    push dat onto the output bits of this interface to let the consumer know it has happened.

    dat

    the values to assign to bits.

    returns

    dat.

  7. def fire(): Bool
  8. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  9. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  10. def nodeq(): Unit

    Indicate no dequeue occurs.

    Indicate no dequeue occurs. Ready is set to false

  11. def noenq(): Unit

    Indicate no enqueue occurs.

    Indicate no enqueue occurs. Valid is set to false, and bits are connected to an uninitialized wire

  12. val target: ReadyValidIO[T]
  13. def toString(): String
    Definition Classes
    Any

Inherited from AnyVal

Inherited from Any

Ungrouped