From e38e3f46f235accacc6245e39b98bdebd99be5b0 Mon Sep 17 00:00:00 2001 From: Jean-Paul Chaput Date: Sat, 7 Jan 2023 13:08:10 +0100 Subject: [PATCH] Route ring pad wires, even if there is no pad on that side. --- cumulus/src/plugins/alpha/chip/pads.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cumulus/src/plugins/alpha/chip/pads.py b/cumulus/src/plugins/alpha/chip/pads.py index e173ef90..455d2d0e 100644 --- a/cumulus/src/plugins/alpha/chip/pads.py +++ b/cumulus/src/plugins/alpha/chip/pads.py @@ -437,6 +437,10 @@ class Side ( object ): startCorner += self.conf.ioPadHeight stopCorner -= self.conf.ioPadHeight if len(self.pads) == 0: + for irail in range(len(self.corona.padRails)): + self._createSegment( self.corona.padRails[ irail ] + , startCorner + , stopCorner ) return padAb = self.conf.getInstanceAb( self.pads[0][1] ) for irail in range(len(self.corona.padRails)):