aboutsummaryrefslogtreecommitdiff
path: root/icebox/icebox.py
diff options
context:
space:
mode:
authorDavid Shah <davey1576@gmail.com>2017-11-12 19:13:55 +0000
committerDavid Shah <davey1576@gmail.com>2017-11-17 15:08:47 +0000
commit88eebff7db9d76e418ccbddd884c4e617596a428 (patch)
treebd12fc0304834bb51f43b534c18020b1ecdc3053 /icebox/icebox.py
parent94aa596cb144cc47dc054377e1510fbb4effbfd8 (diff)
Start UltraPlus DSP documentation
Diffstat (limited to 'icebox/icebox.py')
-rw-r--r--icebox/icebox.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/icebox/icebox.py b/icebox/icebox.py
index f27d749..a6d7155 100644
--- a/icebox/icebox.py
+++ b/icebox/icebox.py
@@ -956,7 +956,7 @@ def netname_normalize(netname, edge="", ramb=False, ramt=False, ramb_8k=False, r
if ramb_8k: netname="ram/RADDR_%d" % ([7, 6, 5, 4, 3, 2, 1, 0, -1, -1, -1, -1, -1, 10, 9, 8][idx1*4 + idx2])
if ramt_8k: netname="ram/WADDR_%d" % ([7, 6, 5, 4, 3, 2, 1, 0, -1, -1, -1, -1, -1, 10, 9, 8][idx1*4 + idx2])
match = re.match(r"(...)_op_(.*)", netname)
- if match:
+ if match and (match.group(1) != "slf"):
netname = "neigh_op_%s_%s" % (match.group(1), match.group(2))
if re.match(r"lutff_7/(cen|clk|s_r)", netname):
netname = netname.replace("lutff_7/", "lutff_global/")