Improved icebox_vlog -P for new iCEcube2

This commit is contained in:
Clifford Wolf 2015-08-26 15:32:52 +02:00
parent 19be8895a5
commit 935621a18d
1 changed files with 5 additions and 4 deletions

View File

@ -95,10 +95,11 @@ for o, a in opts:
p = line[1]
if o == "-P":
p = p.lower()
p = p.replace("_ibuf", "")
p = p.replace("_obuft", "")
p = p.replace("_obuf", "")
p = p.replace("_gb_io", "")
p = re.sub(r"_ibuf$", "", p)
p = re.sub(r"_obuft$", "", p)
p = re.sub(r"_obuf$", "", p)
p = re.sub(r"_gb_io$", "", p)
p = re.sub(r"_pad(_[0-9]+|)$", r"\1", p)
portnames.add(p)
if not re.match(r"[a-zA-Z_][a-zA-Z0-9_]*$", p):
p = "\\%s " % p