blob: 846c0cbd21a8870b79757872c88c244887ce95e8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// See LICENSE for license details.
package chisel.util
import chisel._
object ImplicitConversions {
implicit def intToUInt(x: Int): UInt = UInt(x)
implicit def booleanToBool(x: Boolean): Bool = Bool(x)
}
|