don't use Scala to Chisel implicit conversions outside of rocket
This commit is contained in:
		@@ -22,10 +22,6 @@ package object util {
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  implicit def uintToBitPat(x: UInt): BitPat = BitPat(x)
 | 
			
		||||
  implicit def intToUInt(x: Int): UInt = UInt(x)
 | 
			
		||||
  implicit def bigIntToUInt(x: BigInt): UInt = UInt(x)
 | 
			
		||||
  implicit def booleanToBool(x: Boolean): Bits = Bool(x)
 | 
			
		||||
  implicit def intSeqToUIntSeq(x: Seq[Int]): Seq[UInt] = x.map(UInt(_))
 | 
			
		||||
  implicit def wcToUInt(c: WideCounter): UInt = c.value
 | 
			
		||||
 | 
			
		||||
  implicit class UIntToAugmentedUInt(val x: UInt) extends AnyVal {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user