blob: 6a2300224571b33cd742ed9f2d36e7395b4efcba (
plain)
1
2
3
4
5
6
7
8
|
// See LICENSE for license details.
package Chisel
object ImplicitConversions {
implicit def intToUInt(x: Int): UInt = UInt(x)
implicit def booleanToBool(x: Boolean): Bool = Bool(x)
}
|