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