1
0

replace remaining uses of Vec.fill

This commit is contained in:
Howard Mao
2015-09-24 17:51:38 -07:00
parent e3d2207c72
commit 88b15dba60
2 changed files with 3 additions and 3 deletions

View File

@ -116,7 +116,7 @@ class SMIIONASTIReadIOConverter(val dataWidth: Int, val addrWidth: Int)
val recvInd = Reg(init = UInt(0, wordCountBits))
val sendDone = Reg(init = Bool(false))
val buffer = Reg(init = Vec.fill(maxWordsPerBeat) { Bits(0, dataWidth) })
val buffer = Reg(init = Vec(maxWordsPerBeat, Bits(0, dataWidth)))
io.ar.ready := (state === s_idle)