summaryrefslogtreecommitdiff
path: root/src/main/scala/chisel3/util/util.scala
blob: 129e5d1a75b0abb6870c163f42420947f9708de0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// See LICENSE for license details.

package chisel3

/** The util package provides extensions to core chisel for common hardware components and utility functions.
  *
  */
package object util {

  /** Synonyms, moved from main package object - maintain scope. */
  type ValidIO[+T <: Data] = chisel3.util.Valid[T]
  val ValidIO = chisel3.util.Valid
  val DecoupledIO = chisel3.util.Decoupled

}