From a020e116fb1d0b0405d6bb58383c7cbe176ba9d4 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Thu, 27 May 2021 13:50:12 +0000 Subject: [PATCH] set fake PLL Master Cell directions explicitly --- experiments9/pll.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/experiments9/pll.py b/experiments9/pll.py index ec31755..68a3bf6 100644 --- a/experiments9/pll.py +++ b/experiments9/pll.py @@ -226,6 +226,14 @@ def _load(): 'out_v': Net.create(cell, 'out_v'), } + # set net directions + nets['ref'].setDirection( Net.Direction.IN ) + nets['a0'].setDirection( Net.Direction.IN ) + nets['a1'].setDirection( Net.Direction.IN ) + nets['div_out_test'].setDirection( Net.Direction.OUT ) + nets['vco_test_ana'].setDirection( Net.Direction.OUT ) + nets['out_v'].setDirection( Net.Direction.OUT ) + # create series of stepped pins x = space*20 wid = space -- 2.30.2