From 06dc91039051fd207d010de19a1f0a54c29d192a Mon Sep 17 00:00:00 2001 From: Matt Guthaus Date: Sat, 6 Oct 2018 14:03:00 -0700 Subject: [PATCH] Route supply after moving origin --- compiler/sram_base.py | 6 +++++- compiler/tests/out.log | 0 2 files changed, 5 insertions(+), 1 deletion(-) delete mode 100644 compiler/tests/out.log diff --git a/compiler/sram_base.py b/compiler/sram_base.py index e2fe318d..4ffd283c 100644 --- a/compiler/sram_base.py +++ b/compiler/sram_base.py @@ -80,14 +80,18 @@ class sram_base(design): """ Layout creation """ self.place_modules() self.route() - self.supply_route() + self.add_lvs_correspondence_points() self.offset_all_coordinates() + + # FIXME: Only works in positive directions + self.supply_route() highest_coord = self.find_highest_coords() self.width = highest_coord[0] self.height = highest_coord[1] + self.DRC_LVS(final_verification=True) diff --git a/compiler/tests/out.log b/compiler/tests/out.log deleted file mode 100644 index e69de29b..00000000