1
0

Bits -> UInt

This commit is contained in:
Andrew Waterman 2015-07-30 23:56:47 -07:00
parent c27945c094
commit eb57433f43

View File

@ -31,7 +31,7 @@ abstract trait HASTIConstants
val SZ_HADDR = 32
val SZ_HDATA = 32
def dgate(valid: Bool, b: Bits) = Fill(b.getWidth, valid) & b
def dgate(valid: Bool, b: UInt) = Fill(b.getWidth, valid) & b
}
class HASTIMasterIO extends Bundle