object Cat extends CatIntf
Concatenates elements of the input, in order, together.
- Source
- Cat.scala
Cat("b101".U, "b11".U) // equivalent to "b101 11".U Cat(myUIntWire0, myUIntWire1) Cat(Seq("b101".U, "b11".U)) // equivalent to "b101 11".U Cat(mySeqOfBits)
- Grouped
- Alphabetic
- By Inheritance
- Cat
- CatIntf
- AnyRef
- Any
- Hide All
- Show All
- 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
- def _applyImpl[T <: Bits](r: Seq[T])(implicit sourceInfo: SourceInfo): UInt
- Attributes
- protected
- def _applyImpl[T <: Bits](a: T, r: T*)(implicit sourceInfo: SourceInfo): UInt
- Attributes
- protected
- macro def apply[T <: Bits](r: Seq[T]): UInt
Concatenates the data elements of the input sequence, in reverse sequence order, together.
Concatenates the data elements of the input sequence, in reverse sequence order, together. The first element of the sequence forms the most significant bits, while the last element in the sequence forms the least significant bits.
Equivalent to r(0) ## r(1) ## ... ## r(n-1).
- Definition Classes
- CatIntf
- Note
This returns a
0.U
if applied to a zero-elementVec
.
- macro def apply[T <: Bits](a: T, r: T*): UInt
Concatenates the argument data elements, in argument order, together.
Concatenates the argument data elements, in argument order, together. The first argument forms the most significant bits, while the last argument forms the least significant bits.
- Definition Classes
- CatIntf
- 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 do_apply[T <: Bits](r: Seq[T])(implicit sourceInfo: SourceInfo): UInt
- Definition Classes
- CatIntf
- def do_apply[T <: Bits](a: T, r: T*)(implicit sourceInfo: SourceInfo): UInt
- Definition Classes
- CatIntf
- 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()
- 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()
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.