Added some comments to the spice files.

This commit is contained in:
Matt Guthaus
2019-01-25 15:00:00 -08:00
parent 1afd4341bd
commit 0c3baa5172
14 changed files with 33 additions and 9 deletions
+3 -1
View File
@@ -16,7 +16,9 @@ class delay_chain(design.design):
def __init__(self, name, fanout_list):
"""init function"""
design.design.__init__(self, name)
debug.info(1, "creating delay chain {0}".format(str(fanout_list)))
self.add_comment("fanouts: {0}".format(str(fanout_list)))
# Two fanouts are needed so that we can route the vdd/gnd connections
for f in fanout_list:
debug.check(f>=2,"Must have >=2 fanouts for each stage.")