1
0

tilelink: ToAHB should make read errors sticky as well

This commit is contained in:
Wesley W. Terpstra 2017-10-30 13:31:43 -07:00
parent 4c9d9c6331
commit d6f1612812

View File

@ -168,7 +168,7 @@ class TLToAHB(val aFlow: Boolean = false)(implicit p: Parameters) extends LazyMo
when (out.hreadyout) { when (out.hreadyout) {
d_valid := send.send && (send.last || !send.write) d_valid := send.send && (send.last || !send.write)
when (out.hresp) { d_error := d_write } when (out.hresp) { d_error := Bool(true) }
when (send.first) { d_error := Bool(false) } when (send.first) { d_error := Bool(false) }
} }