From e280efda7bfa5a7a48f309be77da6a4acad8fad7 Mon Sep 17 00:00:00 2001 From: Jesse Cirimelli-Low Date: Thu, 1 Jul 2021 15:19:59 -0700 Subject: [PATCH] don't copy pwell pin onto nwell --- compiler/modules/bitcell_base_array.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/compiler/modules/bitcell_base_array.py b/compiler/modules/bitcell_base_array.py index f26560f0..f9eeaeb7 100644 --- a/compiler/modules/bitcell_base_array.py +++ b/compiler/modules/bitcell_base_array.py @@ -162,9 +162,6 @@ class bitcell_base_array(design.design): inst = self.cell_inst[row, col] for pin_name in ["vdd", "gnd"]: self.copy_layout_pin(inst, pin_name) - if row == 2: #add only 1 label per col - for pin_name in ["vdd", "gnd"]: - self.copy_layout_pin(inst, pin_name) def add_layout_pins(self): """ Add the layout pins """