summaryrefslogtreecommitdiff
path: root/src/main/scala/chisel3/util/util.scala
blob: 164abdf8284aa32c09f16296b90c375d95b86edc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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
}