From 735d66c9f176cbd530fdad07b80c77ec7ae9662e Mon Sep 17 00:00:00 2001 From: mrg Date: Tue, 17 May 2022 15:54:54 -0700 Subject: [PATCH] Start dff array supplies on first rather than second bit. --- compiler/modules/dff_array.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/modules/dff_array.py b/compiler/modules/dff_array.py index 226db997..5cca38b6 100644 --- a/compiler/modules/dff_array.py +++ b/compiler/modules/dff_array.py @@ -117,12 +117,12 @@ class dff_array(design.design): else: # Add connections every 4 cells - for col in range(1, self.columns, 4): + for col in range(0, self.columns, 4): vdd_pin=self.dff_insts[0, col].get_pin("vdd") self.add_power_pin("vdd", vdd_pin.lc()) # Add connections every 4 cells - for col in range(1, self.columns, 4): + for col in range(0, self.columns, 4): gnd_pin=self.dff_insts[0, col].get_pin("gnd") self.add_power_pin("gnd", gnd_pin.rc())