From 13409083301834f77115e4abd3a417dff5009e4f Mon Sep 17 00:00:00 2001 From: mrg Date: Wed, 24 Jun 2020 09:24:26 -0700 Subject: [PATCH] Remove fudge factor for pin spacing --- compiler/pgates/pnand3.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/pgates/pnand3.py b/compiler/pgates/pnand3.py index 03652b9b..1fd5146f 100644 --- a/compiler/pgates/pnand3.py +++ b/compiler/pgates/pnand3.py @@ -233,14 +233,14 @@ class pnand3(pgate.pgate): "A", position="left") - self.inputB_yoffset = self.inputA_yoffset + 1.2 * self.m3_pitch + self.inputB_yoffset = self.inputA_yoffset + self.m3_pitch self.route_input_gate(self.pmos2_inst, self.nmos2_inst, self.inputB_yoffset, "B", position="center") - self.inputC_yoffset = self.inputB_yoffset + 1.2 * self.m3_pitch + self.inputC_yoffset = self.inputB_yoffset + self.m3_pitch self.route_input_gate(self.pmos3_inst, self.nmos3_inst, self.inputC_yoffset,