From 37116ce9d83c368f487412af3284a64ddbb98afb Mon Sep 17 00:00:00 2001 From: jsowash Date: Thu, 29 Aug 2019 16:00:50 -0700 Subject: [PATCH] Increased spacing between wmask and data dffs. --- compiler/sram/sram_1bank.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/sram/sram_1bank.py b/compiler/sram/sram_1bank.py index bcc68d43..3dc9b297 100644 --- a/compiler/sram/sram_1bank.py +++ b/compiler/sram/sram_1bank.py @@ -86,7 +86,7 @@ class sram_1bank(sram_base): # Add the data flops below the write mask flops. data_pos[port] = vector(self.bank.bank_array_ll.x, - -1.5 * max_gap_size - 2 * self.dff.height) + -2 * max_gap_size - 2 * self.dff.height) self.data_dff_insts[port].place(data_pos[port]) else: # Add the data flops below the bank to the right of the lower-left of bank array @@ -140,7 +140,7 @@ class sram_1bank(sram_base): # Add the data flops below the write mask flops data_pos[port] = vector(self.bank.bank_array_ur.x - self.data_dff_insts[port].width, - self.bank.height + 1.5*max_gap_size + 2*self.dff.height) + self.bank.height + 2*max_gap_size + 2*self.dff.height) self.data_dff_insts[port].place(data_pos[port], mirror="MX") else: # Add the data flops above the bank to the left of the upper-right of bank array