From 712b71c5ca0095a99fb1dee6d1da8ac60cf8ac63 Mon Sep 17 00:00:00 2001 From: Matt Guthaus Date: Thu, 15 Nov 2018 15:26:59 -0800 Subject: [PATCH] Mirror port 1 column decoder in X and Y --- compiler/modules/bank.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/modules/bank.py b/compiler/modules/bank.py index 4f493b46..936f6804 100644 --- a/compiler/modules/bank.py +++ b/compiler/modules/bank.py @@ -724,7 +724,7 @@ class bank(design.design): for port in self.all_ports: if port%2 == 1: - mirror = "MY" + mirror = "XY" else: mirror = "R0" self.column_decoder_inst[port].place(offset=offsets[port], mirror=mirror)