From d697559754d229a7213c95c3bec95e2b2392e847 Mon Sep 17 00:00:00 2001 From: Palmer Dabbelt Date: Sat, 5 Mar 2016 21:45:42 -0800 Subject: [PATCH] Correct the polarity of the non-backup-memory HTIF This fails in FIRRTL because <> has polarity now. --- src/main/scala/RocketChip.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/scala/RocketChip.scala b/src/main/scala/RocketChip.scala index 5abb5073..997c4f4e 100644 --- a/src/main/scala/RocketChip.scala +++ b/src/main/scala/RocketChip.scala @@ -199,7 +199,7 @@ class Uncore(implicit val p: Parameters) extends Module VLSIUtils.padOutHTIFWithDividedClock(htif.io.host, scrFile.io.scr, outmemsys.io.mem_backup, io.mem_backup_ctrl, io.host, htifW) } else { - htif.io.host.out <> io.host.out + io.host.out <> htif.io.host.out htif.io.host.in <> io.host.in } }