mirror of
https://github.com/VLSIDA/OpenRAM.git
synced 2026-09-02 11:08:01 +02:00
Merge branch 'dev' into laptop_checkpoint
This commit is contained in:
@@ -426,7 +426,8 @@ class VlsiLayout:
|
||||
self.structures[self.rootStructureName].texts.append(textToAdd)
|
||||
|
||||
def padText(self, text):
|
||||
if(len(text)%2 == 1):
|
||||
debug.check(len(text) > 0, "Cannot have zero length text string.")
|
||||
if(len(text) % 2 == 1):
|
||||
return text + '\x00'
|
||||
else:
|
||||
return text
|
||||
@@ -700,7 +701,6 @@ class VlsiLayout:
|
||||
|
||||
return max_pins
|
||||
|
||||
|
||||
def getAllPinShapes(self, pin_name):
|
||||
"""
|
||||
Search for a pin label and return ALL the enclosing rectangles on the same layer
|
||||
|
||||
Reference in New Issue
Block a user