Remove non-existing routing resources (5k)

This commit is contained in:
David Shah 2017-11-17 15:00:08 +00:00
parent afcc653b78
commit 095b8404e8
1 changed files with 3 additions and 2 deletions

View File

@ -519,8 +519,9 @@ class iceconfig:
h_idx = idx - 28
elif corner == "tl":
#TODO: bounds check for v_idx case?
v_idx = (idx + 8) ^ 1
if idx >= 8 and idx < 32:
if idx >= 4:
v_idx = (idx + 8) ^ 1
if idx >= 12 and idx < 28:
h_idx = (idx ^ 1) - 8
elif corner == "tr":
#TODO: bounds check for v_idx case?