1
0

Flip direction of some bulk connects

This commit is contained in:
Andrew Waterman 2015-08-03 18:01:14 -07:00
parent a21979a2fa
commit 121e4fb511

View File

@ -787,7 +787,7 @@ class TileLinkIOWrapper extends TLModule {
val out = new TileLinkIO
}
io.out.acquire <> io.in.acquire
io.out.grant <> io.in.grant
io.in.grant <> io.out.grant
io.out.finish <> io.in.finish
io.out.probe.ready := Bool(true)
io.out.release.valid := Bool(false)
@ -799,7 +799,7 @@ class ClientTileLinkIOWrapper extends TLModule {
val out = new ClientTileLinkIO
}
io.out.acquire <> io.in.acquire
io.out.grant <> io.in.grant
io.in.grant <> io.out.grant
io.out.probe.ready := Bool(true)
io.out.release.valid := Bool(false)
}