summaryrefslogtreecommitdiff
path: root/src/main/scala/chisel3/util
diff options
context:
space:
mode:
authorJim Lawson2016-09-16 09:07:15 -0700
committerJim Lawson2016-09-16 09:07:15 -0700
commit6d8acee760c8c41fcae2ab252161bac96e6954dc (patch)
tree5d18a203cc9c81011fb3a7745cdc46a04da31354 /src/main/scala/chisel3/util
parent53721ff4fd53f27edd75de8eb649a2e20390cceb (diff)
Rename DecoupledIO object to Decoupled (compatibility).
Diffstat (limited to 'src/main/scala/chisel3/util')
-rw-r--r--src/main/scala/chisel3/util/Arbiter.scala4
-rw-r--r--src/main/scala/chisel3/util/Decoupled.scala6
2 files changed, 5 insertions, 5 deletions
diff --git a/src/main/scala/chisel3/util/Arbiter.scala b/src/main/scala/chisel3/util/Arbiter.scala
index 5d46b7b9..c80f1908 100644
--- a/src/main/scala/chisel3/util/Arbiter.scala
+++ b/src/main/scala/chisel3/util/Arbiter.scala
@@ -10,8 +10,8 @@ import chisel3.NotStrict.CompileOptions
/** An I/O bundle for the Arbiter */
class ArbiterIO[T <: Data](gen: T, n: Int) extends Bundle {
- val in = Flipped(Vec(n, DecoupledIO(gen)))
- val out = DecoupledIO(gen)
+ val in = Flipped(Vec(n, Decoupled(gen)))
+ val out = Decoupled(gen)
val chosen = Output(UInt.width(log2Up(n)))
}
diff --git a/src/main/scala/chisel3/util/Decoupled.scala b/src/main/scala/chisel3/util/Decoupled.scala
index 14637c9b..7c377bfb 100644
--- a/src/main/scala/chisel3/util/Decoupled.scala
+++ b/src/main/scala/chisel3/util/Decoupled.scala
@@ -62,7 +62,7 @@ object ReadyValidIO {
}
}
-object DecoupledIO {
+object Decoupled {
/** Adds a ready-valid handshaking protocol to any interface.
* The standard used is that the consumer uses the flipped interface.
*/
@@ -113,10 +113,10 @@ object Irrevocable
}
object EnqIO {
- def apply[T<:Data](gen: T): DecoupledIO[T] = DecoupledIO(gen)
+ def apply[T<:Data](gen: T): DecoupledIO[T] = Decoupled(gen)
}
object DeqIO {
- def apply[T<:Data](gen: T): DecoupledIO[T] = Flipped(DecoupledIO(gen))
+ def apply[T<:Data](gen: T): DecoupledIO[T] = Flipped(Decoupled(gen))
}
/** An I/O Bundle for Queues