blob: 3a9089c5db312ff13a56282c58c890e909ace880 (
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.Lit(x)
implicit def booleanToBool(x: Boolean): Bool = Bool(x)
}
|