summaryrefslogtreecommitdiff
path: root/src/main/scala/chisel3/compatibility.scala
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/compatibility.scala
parent53721ff4fd53f27edd75de8eb649a2e20390cceb (diff)
Rename DecoupledIO object to Decoupled (compatibility).
Diffstat (limited to 'src/main/scala/chisel3/compatibility.scala')
-rw-r--r--src/main/scala/chisel3/compatibility.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/scala/chisel3/compatibility.scala b/src/main/scala/chisel3/compatibility.scala
index 49b8bb2c..3b1b5b0a 100644
--- a/src/main/scala/chisel3/compatibility.scala
+++ b/src/main/scala/chisel3/compatibility.scala
@@ -146,8 +146,8 @@ package object Chisel { // scalastyle:ignore package.object.name
val Counter = chisel3.util.Counter
type DecoupledIO[+T <: Data] = chisel3.util.DecoupledIO[T]
- val DecoupledIO = chisel3.util.DecoupledIO
- val Decoupled = chisel3.util.DecoupledIO
+ val DecoupledIO = chisel3.util.Decoupled
+ val Decoupled = chisel3.util.Decoupled
class EnqIO[+T <: Data](gen: T) extends DecoupledIO(gen) {
def init(): Unit = {
this.noenq()