From e04f53dc27c7ec9ed7cb58cbceef9fd4983c8eb6 Mon Sep 17 00:00:00 2001 From: Matt Guthaus Date: Mon, 23 Apr 2018 09:18:34 -0700 Subject: [PATCH] Rotate via --- compiler/modules/bank.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/compiler/modules/bank.py b/compiler/modules/bank.py index e781d9a7..a7a1b138 100644 --- a/compiler/modules/bank.py +++ b/compiler/modules/bank.py @@ -619,11 +619,9 @@ class bank(design.design): sa_data_out = self.sense_amp_array_inst.get_pin("data[{}]".format(i)).bc() self.add_via_center(layers=("metal2", "via2", "metal3"), - offset=tri_gate_in, - rotate=90) + offset=tri_gate_in) self.add_via_center(layers=("metal2", "via2", "metal3"), - offset=sa_data_out, - rotate=90) + offset=sa_data_out) self.add_path("metal3",[sa_data_out,tri_gate_in]) def route_tri_gate_out(self):