1
0

fix use of width adapter in NastiConverterTest

This commit is contained in:
Howard Mao 2016-07-01 17:05:41 -07:00
parent f46efb671d
commit 37599fb0c9

View File

@ -161,7 +161,7 @@ class NastiConverterTest(implicit p: Parameters) extends GroundTest()(p)
sequencer.io.in <> tests.map(_.io.mem)
sequencer.io.finished := tests.map(_.io.finished)
converter.io.nasti <> sequencer.io.out
TileLinkWidthAdapter(converter.io.tl, io.mem.head)
TileLinkWidthAdapter(io.mem.head, converter.io.tl)
io.finished := tests.map(_.io.finished).reduce(_ && _)
}