aboutsummaryrefslogtreecommitdiffstats
path: root/ice40/chipdb.py
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2018-06-09 19:52:22 +0200
committerClifford Wolf <clifford@clifford.at>2018-06-09 19:52:22 +0200
commit70f322ab449ce6786f1daacdc6c78df14a2ff5f5 (patch)
tree3db633702922e882770fd864b5609e7ae83aee41 /ice40/chipdb.py
parent72f5e640af8bdccb641bb561757021c0a3d83edb (diff)
downloadnextpnr-70f322ab449ce6786f1daacdc6c78df14a2ff5f5.tar.gz
nextpnr-70f322ab449ce6786f1daacdc6c78df14a2ff5f5.tar.bz2
nextpnr-70f322ab449ce6786f1daacdc6c78df14a2ff5f5.zip
Renamed LOC attribute to BEL, fix ice40 IO bel names
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'ice40/chipdb.py')
-rw-r--r--ice40/chipdb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ice40/chipdb.py b/ice40/chipdb.py
index 78ba2e46..b4240e2d 100644
--- a/ice40/chipdb.py
+++ b/ice40/chipdb.py
@@ -186,7 +186,7 @@ def add_bel_lc(x, y, z):
def add_bel_io(x, y, z):
bel = len(bel_name)
- bel_name.append("%d_%d_lc%d" % (x, y, z))
+ bel_name.append("%d_%d_io%d" % (x, y, z))
bel_type.append("SB_IO")
bel_pos.append((x, y, z))
bel_wires.append(list())