From 9307092d147b086eeb066cb30fbc455228049480 Mon Sep 17 00:00:00 2001 From: "Wesley W. Terpstra" Date: Wed, 27 Sep 2017 14:20:39 -0700 Subject: [PATCH] coreplex: draw the FrontBus at the bottom and SystemBus at the top --- src/main/scala/coreplex/FrontBus.scala | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main/scala/coreplex/FrontBus.scala b/src/main/scala/coreplex/FrontBus.scala index 98d080bc..2ece4503 100644 --- a/src/main/scala/coreplex/FrontBus.scala +++ b/src/main/scala/coreplex/FrontBus.scala @@ -55,6 +55,5 @@ trait HasFrontBus extends HasSystemBus { val fbus = LazyModule(new FrontBus(frontbusParams)) - sbus.fromFrontBus := fbus.toSystemBus - + FlipRendering { implicit p => sbus.fromFrontBus := fbus.toSystemBus } }