diff options
author | Clifford Wolf <clifford@clifford.at> | 2015-08-27 16:22:57 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2015-08-27 16:22:57 +0200 |
commit | c746cc670b03fa1ab45200e250d3f8544d78e292 (patch) | |
tree | fd437c965feb62b7d161092502c571acca914000 /icebox | |
parent | 935621a18d0f50cae7fcb1589bf69ab3e8cf0a68 (diff) | |
download | icestorm-c746cc670b03fa1ab45200e250d3f8544d78e292.tar.gz icestorm-c746cc670b03fa1ab45200e250d3f8544d78e292.tar.bz2 icestorm-c746cc670b03fa1ab45200e250d3f8544d78e292.zip |
Fixed "icebox_vlog -l" for 8k FPGAs
Diffstat (limited to 'icebox')
-rwxr-xr-x | icebox/icebox_vlog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/icebox/icebox_vlog.py b/icebox/icebox_vlog.py index feb1023..d596b89 100755 --- a/icebox/icebox_vlog.py +++ b/icebox/icebox_vlog.py @@ -290,7 +290,7 @@ for segs in sorted(ic.group_segments(extra_connections=extra_connections, extra_ p = pcf_data[(entry[1], entry[2], entry[3])] unmatched_ports.discard(p) elif lookup_pins: - p = "pin_%d" % entry[0] + p = "pin_%s" % entry[0] if not renamed_net_to_port: n = p if idx in iocells_in and idx not in iocells_out: |