mirror of https://github.com/YosysHQ/icestorm.git
Remove non-existing routing resources (5k)
This commit is contained in:
parent
afcc653b78
commit
095b8404e8
|
|
@ -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?
|
||||
|
|
|
|||
Loading…
Reference in New Issue