From 198c0faf854a6d41932885b6b8572ed16533e5b2 Mon Sep 17 00:00:00 2001 From: mrg Date: Fri, 13 Nov 2020 07:45:31 -0800 Subject: [PATCH] Remove special s8 6t names --- compiler/base/custom_cell_properties.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/compiler/base/custom_cell_properties.py b/compiler/base/custom_cell_properties.py index c592665a..8530ee64 100644 --- a/compiler/base/custom_cell_properties.py +++ b/compiler/base/custom_cell_properties.py @@ -50,7 +50,6 @@ class _pgate: class _bitcell: def __init__(self, mirror, cell_s8_6t, cell_6t, cell_1rw1r, cell_1w1r): self.mirror = mirror - self._s8_6t = cell_s8_6t self._6t = cell_6t self._1rw1r = cell_1rw1r self._1w1r = cell_1w1r @@ -58,10 +57,6 @@ class _bitcell: def _default(): axis = _mirror_axis(True, False) - cell_s8_6t = _cell({'bl': 'bl', - 'br': 'br', - 'wl': 'wl'}) - cell_6t = _cell({'bl': 'bl', 'br': 'br', 'wl': 'wl'})