diff options
author | Miodrag Milanovic <mmicko@gmail.com> | 2019-10-12 19:07:54 +0200 |
---|---|---|
committer | Miodrag Milanovic <mmicko@gmail.com> | 2019-10-20 09:41:48 +0200 |
commit | 8c79044d43417790a2a8844ea09cfc038e6b239c (patch) | |
tree | 9481dbe6527ce8fb9e7f116d478a5e68ebbfb625 /ecp5/trellis_import.py | |
parent | 4cbdc388b860ca5f5af5e99c2bc7b21ff6b461bd (diff) | |
download | nextpnr-8c79044d43417790a2a8844ea09cfc038e6b239c.tar.gz nextpnr-8c79044d43417790a2a8844ea09cfc038e6b239c.tar.bz2 nextpnr-8c79044d43417790a2a8844ea09cfc038e6b239c.zip |
more wires between switchboxes
Diffstat (limited to 'ecp5/trellis_import.py')
-rwxr-xr-x | ecp5/trellis_import.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ecp5/trellis_import.py b/ecp5/trellis_import.py index e12f8bb7..ebdc45f7 100755 --- a/ecp5/trellis_import.py +++ b/ecp5/trellis_import.py @@ -74,6 +74,12 @@ def wire_type(name): if name[0].startswith("V06"): return "WIRE_TYPE_V06" + if name[0].startswith("HFI"): + return "WIRE_TYPE_HFI" + + if name[0].startswith("HL7"): + return "WIRE_TYPE_HL7" + return "WIRE_TYPE_NONE" def is_global(loc): |