1
0

Vec(Reg) -> Reg(Vec)

This commit is contained in:
Andrew Waterman
2015-07-15 12:33:46 -07:00
parent a78e28523c
commit be2ff6dec7
6 changed files with 8 additions and 8 deletions

View File

@ -218,7 +218,7 @@ class ICache extends FrontendModule
val s1_tag_match = Vec.fill(nWays){Bool()}
val s2_tag_hit = Vec.fill(nWays){Bool()}
val s2_dout = Vec.fill(nWays){Reg(Bits())}
val s2_dout = Reg(Vec.fill(nWays){Bits()})
for (i <- 0 until nWays) {
val s1_vb = !io.invalidate && vb_array(Cat(UInt(i), s1_pgoff(untagBits-1,blockOffBits))).toBool