blob: f786d4f14ebf4fc4c87325a7b0b5c0b255a35e07 (
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)
}
|