1
0

Revert "replace remaining uses of Vec.fill"

This reverts commit 16dca2186b95945ad2ba5f906113101de0726617.
This commit is contained in:
Andrew Waterman
2015-09-25 17:05:07 -07:00
parent a9c6cced2d
commit e75674c0cb
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(maxWordsPerBeat, Bits(0, dataWidth)))
val buffer = Reg(init = Vec.fill(maxWordsPerBeat) { Bits(0, dataWidth) })
io.ar.ready := (state === s_idle)