1
0
Fork 0

tilelink2: pass E through the HintHandler

This commit is contained in:
Wesley W. Terpstra 2016-08-30 16:10:42 -07:00
parent a72f7115ae
commit cc8112d02e
1 changed files with 5 additions and 0 deletions

View File

@ -45,5 +45,10 @@ class TLHintHandler(passthrough: Boolean = true) extends TLSimpleFactory
out.b.ready := Mux(bypassC, out.c.ready && !in.c.valid, in.b.ready)
in.b.valid := out.b.valid && !bypassC
in.b.bits := out.b.bits
// Pass E through unchanged
out.e.valid := in.e.valid
in.e.ready := out.e.ready
out.e.bits := in.e.bits
})
}