MixedVecInit

chisel3.util.MixedVecInit
object MixedVecInit

Create a MixedVec wire with default values as specified, and type of each element inferred from those default values.

This is analogous to VecInit.

Attributes

Returns

MixedVec with given values assigned

Example
MixedVecInit(Seq(100.U(8.W), 10000.U(16.W), 101.U(32.W)))
Source
MixedVec.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Self type

Members list

Value members

Concrete methods

def apply[T <: Data](vals: Seq[T]): MixedVec[T]

Create a MixedVec wire from a Seq of values.

Create a MixedVec wire from a Seq of values.

Attributes

Source
MixedVec.scala
def apply[T <: Data](val0: T, vals: T*): MixedVec[T]

Create a MixedVec wire from a varargs list of values.

Create a MixedVec wire from a varargs list of values.

Attributes

Source
MixedVec.scala