Fill

chisel3.util.Fill
object Fill

Create repetitions of the input using a tree fanout topology.

Attributes

Example
Fill(2, "b1000".U)  // equivalent to "b1000 1000".U
Fill(2, "b1001".U)  // equivalent to "b1001 1001".U
Fill(2, myUIntWire)  // dynamic fill
Source
Bitwise.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
Fill.type

Members list

Value members

Inherited methods

def apply(n: Int, x: UInt)(using SourceInfo): UInt

Create n repetitions of x using a tree fanout topology.

Create n repetitions of x using a tree fanout topology.

Output data-equivalent to x ## x ## ... ## x (n repetitions).

Attributes

Throws
java.lang.IllegalArgumentException

if n is less than zero

Inherited from:
Fill$Intf (hidden)
Source
BitwiseIntf.scala