summaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
authorStevo2017-01-30 12:17:33 -0800
committerRichard Lin2017-01-30 12:17:33 -0800
commit770c5671744502ba7865a41472972388b2fade2c (patch)
tree6a184aaf98e3285d8d0582170217c25ef57bd67a /src/main
parentba568946dd8ac28d5d3caf217647c2597564574d (diff)
Add shift register with reset (#439)
* [stevo]: add reset initialization to shift register * [stevo]: better comment * [stevo]: add tests, fix bug
Diffstat (limited to 'src/main')
-rw-r--r--src/main/scala/chisel3/util/Reg.scala16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/main/scala/chisel3/util/Reg.scala b/src/main/scala/chisel3/util/Reg.scala
index 00005e3a..27785dfb 100644
--- a/src/main/scala/chisel3/util/Reg.scala
+++ b/src/main/scala/chisel3/util/Reg.scala
@@ -61,4 +61,20 @@ object ShiftRegister
in
}
}
+
+ /** Returns the n-cycle delayed version of the input signal with reset initialization.
+ *
+ * @param in input to delay
+ * @param n number of cycles to delay
+ * @param resetData reset value for each register in the shift
+ * @param en enable the shift
+ */
+ def apply[T <: Data](in: T, n: Int, resetData: T, en: Bool): T = {
+ // The order of tests reflects the expected use cases.
+ if (n != 0) {
+ RegEnable(apply(in, n-1, resetData, en), resetData, en)
+ } else {
+ in
+ }
+ }
}