From 37599fb0c9ce58473d0990b227b657c4f7ee982a Mon Sep 17 00:00:00 2001 From: Howard Mao Date: Fri, 1 Jul 2016 17:05:41 -0700 Subject: [PATCH] fix use of width adapter in NastiConverterTest --- groundtest/src/main/scala/nastitest.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/groundtest/src/main/scala/nastitest.scala b/groundtest/src/main/scala/nastitest.scala index 2873920a..92a10126 100644 --- a/groundtest/src/main/scala/nastitest.scala +++ b/groundtest/src/main/scala/nastitest.scala @@ -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(_ && _) }