From 0ed81aa923fcd0e7b717616318c684fa8b9071d3 Mon Sep 17 00:00:00 2001 From: mrg Date: Mon, 20 Jul 2020 14:11:52 -0700 Subject: [PATCH] Removed extraneous shift from added mirroring --- compiler/sram/sram_1bank.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/sram/sram_1bank.py b/compiler/sram/sram_1bank.py index 2808c8ca..6b334060 100644 --- a/compiler/sram/sram_1bank.py +++ b/compiler/sram/sram_1bank.py @@ -206,7 +206,7 @@ class sram_1bank(sram_base): self.col_addr_pos[port] = vector(x_offset, y_offset) self.col_addr_dff_insts[port].place(self.col_addr_pos[port], mirror="XY") - x_offset = self.col_addr_dff_insts[port].lx() - self.col_addr_dff_insts[port].width + x_offset = self.col_addr_dff_insts[port].lx() else: self.col_addr_pos[port] = vector(x_offset, y_offset)