FillInterleaved
chisel3.util.FillInterleaved
object FillInterleaved
Creates repetitions of each bit of the input in order.
Attributes
- Example
-
FillInterleaved(2, "b1 0 0 0".U) // equivalent to "b11 00 00 00".U FillInterleaved(2, "b1 0 0 1".U) // equivalent to "b11 00 00 11".U FillInterleaved(2, myUIntWire) // dynamic interleaved fill FillInterleaved(2, Seq(false.B, false.B, false.B, true.B)) // equivalent to "b11 00 00 00".U FillInterleaved(2, Seq(true.B, false.B, false.B, true.B)) // equivalent to "b11 00 00 11".U - Source
- Bitwise.scala
- Graph
-
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
FillInterleaved.type
Members list
In this article