diff options
| author | Andrew Waterman | 2015-09-18 13:51:06 -0700 |
|---|---|---|
| committer | Andrew Waterman | 2015-09-18 13:51:45 -0700 |
| commit | df5610b3c27c7ed9575dec8c3f76d1c4aff00012 (patch) | |
| tree | 2b286da54ec23fdf934418a357cacbffd5cab457 | |
| parent | f71b738e657ad783fa776a27b864eb93d55faa53 (diff) | |
Correct some scaladoc comments
| -rw-r--r-- | src/main/scala/Chisel/Core.scala | 5 | ||||
| -rw-r--r-- | src/main/scala/Chisel/Utils.scala | 16 |
2 files changed, 10 insertions, 11 deletions
diff --git a/src/main/scala/Chisel/Core.scala b/src/main/scala/Chisel/Core.scala index 74f07756..2284ff16 100644 --- a/src/main/scala/Chisel/Core.scala +++ b/src/main/scala/Chisel/Core.scala @@ -35,9 +35,8 @@ object debug { def apply (arg: Data) = arg } -/** *Data* is part of the *Node* Composite Pattern class hierarchy. - It is the root of the type system which includes composites (Bundle, Vec) - and atomic types (UInt, SInt, etc.). +/** *Data* is the root of the type system which includes + Aggregate (Bundle, Vec) and Element (UInt, SInt, etc.). Instances of Data are meant to help with construction and correctness of a logic graph. They will trimmed out of the graph before a *Backend* diff --git a/src/main/scala/Chisel/Utils.scala b/src/main/scala/Chisel/Utils.scala index 51c0d8ff..1340e037 100644 --- a/src/main/scala/Chisel/Utils.scala +++ b/src/main/scala/Chisel/Utils.scala @@ -199,23 +199,23 @@ object MuxLookup { } -/** Fill fans out a Node to multiple copies */ +/** Fill fans out a UInt to multiple copies */ object Fill { - /** Fan out mod n times */ - def apply(n: Int, y: UInt): UInt = { + /** Fan out x n times */ + def apply(n: Int, x: UInt): UInt = { n match { case 0 => UInt(width=0) - case 1 => y - case x if n > 1 => + case 1 => x + case y if n > 1 => val p2 = Array.ofDim[UInt](log2Up(n+1)) - p2(0) = y + p2(0) = x for (i <- 1 until p2.length) p2(i) = Cat(p2(i-1), p2(i-1)) - Cat((0 until log2Up(x+1)).filter(i => (x & (1 << i)) != 0).map(p2(_))) + Cat((0 until log2Up(y+1)).filter(i => (y & (1 << i)) != 0).map(p2(_))) case _ => throw new IllegalArgumentException(s"n (=$n) must be nonnegative integer.") } } - /** Fan out mod n times */ + /** Fan out x n times */ def apply(n: Int, x: Bool): UInt = if (n > 1) UInt(0,n) - x else apply(n, x: UInt) |
