mirror of https://github.com/VLSIDA/OpenRAM.git
Default supply routing is tree.
This commit is contained in:
parent
f48b0b8f41
commit
b3948121df
|
|
@ -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):
|
||||||
"""
|
"""
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue