From 76f77527b617aa87568dfaf62c1c32485355cbf0 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Thu, 3 Jun 2021 15:14:33 +0000 Subject: [PATCH] rename ref in fake-pll to ref_v --- experiments9/pll.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/experiments9/pll.py b/experiments9/pll.py index 68a3bf6..56163ae 100644 --- a/experiments9/pll.py +++ b/experiments9/pll.py @@ -218,7 +218,7 @@ def _load(): )) nets = { #'*': Net.create(cell, '*'), - 'ref': Net.create(cell, 'ref'), + 'ref_v': Net.create(cell, 'ref_v'), 'div_out_test': Net.create(cell, 'div_out_test'), 'a0': Net.create(cell, 'a0'), 'a1': Net.create(cell, 'a1'), @@ -227,7 +227,7 @@ def _load(): } # set net directions - nets['ref'].setDirection( Net.Direction.IN ) + nets['ref_v'].setDirection( Net.Direction.IN ) nets['a0'].setDirection( Net.Direction.IN ) nets['a1'].setDirection( Net.Direction.IN ) nets['div_out_test'].setDirection( Net.Direction.OUT ) @@ -238,7 +238,7 @@ def _load(): x = space*20 wid = space step = wid*5 - for cname in ['ref', 'div_out_test', 'a0', 'a1', 'vco_test_ana', + for cname in ['ref_v', 'div_out_test', 'a0', 'a1', 'vco_test_ana', 'out_v']: net = nets[cname] pin = Vertical.create( -- 2.30.2