summaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
authorJim Lawson2016-07-28 17:20:33 -0700
committerJim Lawson2016-07-28 17:20:33 -0700
commit81d60a4076eab24553f67ae6b85031d2075a5fac (patch)
tree8915ebc037eca2bef782fb15c45741a6d590b947 /src/main
parentac5bc19b5b4a3cc631900acf9dc04386a5c5cddc (diff)
Add missing Decoupled object pointer.
Diffstat (limited to 'src/main')
-rw-r--r--src/main/scala/chisel3/compatibility.scala1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/scala/chisel3/compatibility.scala b/src/main/scala/chisel3/compatibility.scala
index a7968bd5..939e005a 100644
--- a/src/main/scala/chisel3/compatibility.scala
+++ b/src/main/scala/chisel3/compatibility.scala
@@ -107,6 +107,7 @@ package object Chisel {
type DecoupledIO[+T <: Data] = chisel3.util.DecoupledIO[T]
val DecoupledIO = chisel3.util.DecoupledIO
+ val Decoupled = chisel3.util.DecoupledIO
class EnqIO[+T <: Data](gen: T) extends DecoupledIO(gen) {
def init(): Unit = {
this.noenq()