diff options
| author | mergify[bot] | 2022-02-03 17:24:53 +0000 |
|---|---|---|
| committer | GitHub | 2022-02-03 17:24:53 +0000 |
| commit | 56d789c17cec32cb985ebce2651bf7269f95b5d1 (patch) | |
| tree | a0f5ed3d36cac513d85a56de1deb4853bf71b21c | |
| parent | 8776e58ff91cd88562b957d7a09322ec16610b81 (diff) | |
FillInterleaved documentation: swap order of elements in Seq example (#2393) (#2395)
(cherry picked from commit 055a85298c46c6734880cd828af436adbded1d0a)
Co-authored-by: John Ingalls <43973001+ingallsj@users.noreply.github.com>
| -rw-r--r-- | src/main/scala/chisel3/util/Bitwise.scala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/scala/chisel3/util/Bitwise.scala b/src/main/scala/chisel3/util/Bitwise.scala index 0d8318bf..8abe3645 100644 --- a/src/main/scala/chisel3/util/Bitwise.scala +++ b/src/main/scala/chisel3/util/Bitwise.scala @@ -14,7 +14,7 @@ import chisel3._ * FillInterleaved(2, "b1 0 0 1".U) // equivalent to "b11 00 00 11".U * FillInterleaved(2, myUIntWire) // dynamic interleaved fill * - * FillInterleaved(2, Seq(true.B, false.B, false.B, false.B)) // equivalent to "b11 00 00 00".U + * 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 * }}} */ |
