Default supply routing is tree.

This commit is contained in:
mrg 2021-05-05 14:04:24 -07:00
parent f48b0b8f41
commit b3948121df
1 changed files with 5 additions and 5 deletions

View File

@ -290,7 +290,7 @@ class sram_base(design, verilog, lef):
pin.width(), pin.width(),
pin.height()) pin.height())
elif OPTS.route_supplies == "tree": elif OPTS.route_supplies:
# Update these as we may have routed outside the region (perimeter pins) # Update these as we may have routed outside the region (perimeter pins)
lowest_coord = self.find_lowest_coords() lowest_coord = self.find_lowest_coords()
@ -324,9 +324,9 @@ class sram_base(design, verilog, lef):
pin_offset, pin_offset,
pin_width, pin_width,
pin.height()) pin.height())
else: else:
# Grid is left with many top level pins # Grid is left with many top level pins
pass pass
def route_escape_pins(self): def route_escape_pins(self):
""" """