Route supply after moving origin

This commit is contained in:
Matt Guthaus 2018-10-06 14:03:00 -07:00
parent 8499983cc2
commit 06dc910390
2 changed files with 5 additions and 1 deletions

View File

@ -80,14 +80,18 @@ class sram_base(design):
""" Layout creation """ """ Layout creation """
self.place_modules() self.place_modules()
self.route() self.route()
self.supply_route()
self.add_lvs_correspondence_points() self.add_lvs_correspondence_points()
self.offset_all_coordinates() self.offset_all_coordinates()
# FIXME: Only works in positive directions
self.supply_route()
highest_coord = self.find_highest_coords() highest_coord = self.find_highest_coords()
self.width = highest_coord[0] self.width = highest_coord[0]
self.height = highest_coord[1] self.height = highest_coord[1]
self.DRC_LVS(final_verification=True) self.DRC_LVS(final_verification=True)

View File