diff options
author | Clifford Wolf <clifford@clifford.at> | 2018-06-12 14:25:12 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2018-06-12 14:25:12 +0200 |
commit | d62e341d5a3183d6fdb7168afb978068a396e9a4 (patch) | |
tree | 6371f1e406aa80c41fcec87270ed815b8eb35605 /python | |
parent | 391d49c13ec675e263115d18481d4b842622b712 (diff) | |
parent | 9ee6a6e1149e35bcca3c1781f6ce84b11dc80296 (diff) | |
download | nextpnr-d62e341d5a3183d6fdb7168afb978068a396e9a4.tar.gz nextpnr-d62e341d5a3183d6fdb7168afb978068a396e9a4.tar.bz2 nextpnr-d62e341d5a3183d6fdb7168afb978068a396e9a4.zip |
Merge branch 'master' of gitlab.com:SymbioticEDA/nextpnr
Diffstat (limited to 'python')
-rw-r--r-- | python/dump_design.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/dump_design.py b/python/dump_design.py index 3972f4dc..3408ef9d 100644 --- a/python/dump_design.py +++ b/python/dump_design.py @@ -20,6 +20,6 @@ for cell, cinfo in sorted(design.cells, key=lambda x: x.first): val = "{}'b{}".format(len(val), val) print("\t\t{}: {}".format(param, val)) - if cinfo.bel != -1: + if cinfo.bel.index != -1: print("\tBel: {}".format(chip.getBelName(cinfo.bel))) print() |