From 78013d32b763ddb7b5245c0d6d67e8acf68ae3db Mon Sep 17 00:00:00 2001 From: samuelkcrow Date: Thu, 28 Apr 2022 09:39:14 -0700 Subject: [PATCH] hard-code multi-delay stages --- compiler/modules/control_logic_delay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/modules/control_logic_delay.py b/compiler/modules/control_logic_delay.py index 983c25d3..42524c77 100644 --- a/compiler/modules/control_logic_delay.py +++ b/compiler/modules/control_logic_delay.py @@ -151,7 +151,7 @@ class control_logic_delay(design.design): debug.check(OPTS.delay_chain_stages % 2, "Must use odd number of delay chain stages for inverting delay chain.") self.multi_delay_chain=factory.create(module_type = "multi_delay_chain", - fanout_list = OPTS.delay_chain_stages * [ OPTS.delay_chain_fanout_per_stage ], + fanout_list = 14 * [ OPTS.delay_chain_fanout_per_stage ], pinout_list = [1, 6, 7, 14]) # TODO: generate this list programatically # not being used